estmal Tidhttp aufs Form schmeißen, und dann sollte es mit
Delphi-Quellcode:
var Quelltext: String;
begin
Quelltext := idhttp1.Get('www.delphipraxis.net');
getan sein
oder
Delphi-Quellcode:
[...]
uses idhttp,...
[...]
var Quelltext: String;
http1: Tidhttp;
begin
http1 := Tidhttp.Create(Self);
Quelltext := http1.Get('www.delphipraxis.net');
http1.Free;
end;