home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2002 September / PCPlus_193_Laplink2000.iso / Prog / delphi / test / test.dpr < prev   
Encoding:
Text File  |  2002-04-29  |  178 b   |  14 lines

  1. program test;
  2.  
  3. uses
  4.   Forms,
  5.   t1 in 't1.pas' {Form1};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.