home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / e_to_l / grfrm11 / showcan.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  243 b   |  15 lines

  1. program Showcan;
  2.  
  3. uses
  4.   Forms,
  5.   Show1 in 'SHOW1.PAS' {Form1},
  6.   Show2 in 'SHOW2.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.