home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Books / 4 / EX23.ZIP / CUST_LOG.DPR next >
Encoding:
Text File  |  1996-01-15  |  236 b   |  15 lines

  1. program Cust_log;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'UNIT1.PAS' {Form1},
  6.   Unit2 in 'UNIT2.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.