please, how to capture Exception ESocketError (10060), host has failed to respond
i try this but is not work :
Code: Select all
try
cnx.ConnectString:='login/[email protected]:1521:BIZ';
cnx.Connect;
Except on E: ESocketError do
begin
showmessage('Error; Enable to connect!');
end;
end;cnx : is a TOraSession Compenent.
thanx.