Hi,
ich hab das Problem nun selbst gelöst.
Den Quellcode hab ich aus einem anderen Thread geholt ...
Delphi-Quellcode:
vorhanden := true;
try
IdHTTP1.Head('
http://www.delphipraxis.net/index.html');
except
on EIdHTTPProtocolException
do vorhanden := false;
on E:
Exception do vorhanden := false;
end;
if vorhanden = false
then ShowMessage ('
Nicht vorhanden !');
devnull