home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Info / Extras / NetManage / Demos / Http / httpdemo.dpr next >
Encoding:
Text File  |  1997-03-13  |  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.