home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / full / delphi / RUNIMAGE / DELPHI30 / DEMOS / INTERNET / HTTP / HTTPDEMO.DPR next >
Encoding:
Text File  |  1997-08-04  |  421 b   |  17 lines

  1. { This demo illustrates using the HTTP control to retrieve HTML documents from
  2.   a server.  This example is similar to the HTML control demo but it only displays
  3.   the text of the retrieved document without HTML tags or graphics. }
  4. program HTTPDemo;
  5.  
  6. uses
  7.   Forms,
  8.   main in 'main.pas' {Form1};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.