home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / wptools1 / demo / label / project1.dpr next >
Encoding:
Text File  |  1996-09-15  |  263 b   |  15 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'UNIT1.PAS' {LabelForm},
  6.   Unit2 in 'UNIT2.PAS' {EditForm};
  7.  
  8. {$R *.RES}      
  9.  
  10. begin
  11.   Application.CreateForm(TLabelForm, LabelForm);
  12.   Application.CreateForm(TEditForm, EditForm);
  13.   Application.Run;
  14. end.
  15.