home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D / SNPTST20.ZIP / TestDLL / TestDLL.dpr < prev    next >
Text File  |  1998-07-25  |  193b  |  14 lines

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