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

  1. { This application demonstrates some of the basic functionality of the NNTP
  2.   component.  It is not a complete application rather a browser of Usenet news
  3.   groups/messages. }
  4. program nntpdemo;
  5.  
  6. uses
  7.   Forms,
  8.   main in 'main.pas' {NewsForm},
  9.   connect in 'connect.pas' {ConnectDlg};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TNewsForm, NewsForm);
  16.   Application.Run;
  17. end.
  18.