S
seilfer
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.page1buttonClick(Sender: TObject);
begin
try
ClientSocket1.Open;
page1button.Enabled:=false;
except
application.MessageBox('无法与服务器建立通信连接,请检查网络情况!','示',0);
end;
end;
如果连接失败的话会弹出一个asynchronous socket error 10061的错误提示,但是EXCEPT里的MESSAGEBOX不执行,怎么才能屏蔽掉这个错误提示,在ONERROR里写了也不管用
begin
try
ClientSocket1.Open;
page1button.Enabled:=false;
except
application.MessageBox('无法与服务器建立通信连接,请检查网络情况!','示',0);
end;
end;
如果连接失败的话会弹出一个asynchronous socket error 10061的错误提示,但是EXCEPT里的MESSAGEBOX不执行,怎么才能屏蔽掉这个错误提示,在ONERROR里写了也不管用