Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Library: Internet / LAN / ASP.NET (https://www.delphipraxis.net/23-library-internet-lan-asp-net/)
-   -   Delphi Besteht eine Netzwerk - Verbindung (https://www.delphipraxis.net/5887-besteht-eine-netzwerk-verbindung.html)

Daniel B 22. Jun 2003 12:14


Besteht eine Netzwerk - Verbindung
 
Hallo,

damit wird überprüft ob eine Verbindung zum Netzwerk besteht, ist das der Fall so gibt die Funktion ein True zurück, ansonsten ein False.
Delphi-Quellcode:
function IsNetworkConnected: Boolean;
begin
  if GetSystemMetrics(SM_NETWORK) and $01 = $01 then
  begin
    Result := True;
  end
  else
  begin
    Result := False;
  end;
end;
Grüsse, Daniel :hi:


Alle Zeitangaben in WEZ +1. Es ist jetzt 06:05 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz