S
SuKiDelphi
Unregistered / Unconfirmed
GUEST, unregistred user!
Client 代码:
procedure TMyClient.Button1Click(Sender: TObject);
begin
with IdTCPClient1 do
begin
try
WriteLn('info'); // 通知服务器
// 想写到服务器去
// 这里想写的格式是:
// Client 计算机名:
// 时间:
// 其它:
// 其它
except
end;
end;
end;
Server 代码:
procedure TMyServer.IdTCPServer1Execute(AThread: TIdPeerThread);
var
Command : String;
begin
Command := AThread.Connection.ReadLn;
if Command = 'info' then
begin
读入Client发过来的, 可能有 200 台电脑(上面的Client)同时要发信息过来, 要分出来
// Client 计算机名:
// 时间:
// 其它:
// 其它
end;
end;
procedure TMyClient.Button1Click(Sender: TObject);
begin
with IdTCPClient1 do
begin
try
WriteLn('info'); // 通知服务器
// 想写到服务器去
// 这里想写的格式是:
// Client 计算机名:
// 时间:
// 其它:
// 其它
except
end;
end;
end;
Server 代码:
procedure TMyServer.IdTCPServer1Execute(AThread: TIdPeerThread);
var
Command : String;
begin
Command := AThread.Connection.ReadLn;
if Command = 'info' then
begin
读入Client发过来的, 可能有 200 台电脑(上面的Client)同时要发信息过来, 要分出来
// Client 计算机名:
// 时间:
// 其它:
// 其它
end;
end;