一句話判斷網路是否聯通

weixin_34119545發表於2019-01-08

uses WinInet;

procedure TForm1.Button1Click(Sender: TObject);
begin
  if InternetGetConnectedState(nil, 0) then ShowMessage('已連線');
end;

相關文章