dose anyone know if delphi 2010 has a bug with tclientsocket as i been trying to sort a socket app and everytime i got to connect to server it will not and i get Asynchronous socket error 10060 from client.
anyone have any idears?
[code]
DM.VedosClientSocket.Address := '127.0.0.1';
DM.VedosClientSocket.Host := 'localhost';
DM.VedosClientSocket.Port := 6060;
DM.VedosClientSocket.Active := True;
[/code]
thanks
Slewis
Comments
if ErrorCode = 10060 then ErrorCode:= 0;
This catches and stops that message from appearing.