home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 January / Pcwk0198.iso / Dcomplib / ASSISTNT.LZH / ADEMO.DPR next >
Text File  |  1997-02-25  |  229b  |  15 lines

  1. program Ademo;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1},
  6.   Form in 'FORM.PAS' {Form2};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TForm2, Form2);
  13.   Application.Run;
  14. end.
  15.