LAN Web TCP Delphi

Title: How to show the source code of a webpage in a Memo
procedure TForm1.Button1Click(Sender: TObject);
begin
NMHTTP1.Get('www.swissdelphicenter.ch');
memo1.Text := NMHTTP1.Body
end;