Die Fkt prüft vorher noch, ob eine Verbindung besteht:
Delphi-Quellcode:
var State, Size : Dword;
if InternetQueryOption(nil, INTERNET_OPTION_CONNECTED_STATE, @State,
@Size) then
begin
if(State and INTERNET_STATE_DISCONNECTED_BY_USER = INTERNET_STATE_DISCONNECTED_BY_USER) then
exit(true);
end;
Vielleicht hilft dir das weiter.