IdTCPClient1: TIdTCPClient;和 IdTCPServer1: TIdTCPServer;的连接(100分)

  • 主题发起人 主题发起人 网中
  • 开始时间 开始时间

网中

Unregistered / Unconfirmed
GUEST, unregistred user!
用INDY 控件的 IdTCPClient1: TIdTCPClient;和 IdTCPServer1: TIdTCPServer;进行连接。当 IdTCPServer1.Active := false 时 IdTCPClient1 怎样可以得知(便于重新连接)?用 if not IdTcpClient2.Connected then …… 只能用一次。有没有更好办法?
 
能不能解释一下你想做什么及想法?贴出代码更好[:D]
 
加个timer
在它的事件时写
if not connected then
begin
with TCPClient do
begin
Connect;
try
finally
Disconnect;
end;
end;
end;
 
多人接受答案了。
 
后退
顶部