Zitat von
inherited:
Und das hier:
Delphi-Quellcode:
function IsInternetConnected: Boolean;
begin
if InternetGetConnectedState(nil, 0) then
begin
Result := True;
end
else
begin
Result := False;
end;
end;
Geht noch eleganter
Delphi-Quellcode:
function IsInternetConnected: Boolean;
begin
result:=InternetGetConnectedState(nil, 0)
end;
Ich weiß, stand in dem post aus dem ich das hab auch, auch von dir
Danke an alle
MfG - Ghost007