home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / PROGRAM / DELPHI / LCSIPPT / SAMPLES / SAMPLE.DPR < prev   
Text File  |  1995-04-11  |  201b  |  14 lines

  1. program Sample;
  2.  
  3. uses
  4.   Forms,
  5.   Mainfrm in 'MAINFRM.PAS' {MainForm},
  6.   WinSock in 'WINSOCK.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TMainForm, MainForm);
  12.   Application.Run;
  13. end.
  14.