home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / a_to_d / ansmach / ansmach.dpr next >
Encoding:
Text File  |  1996-09-15  |  256 b   |  15 lines

  1. program Ansmach;
  2.  
  3. uses
  4.   Forms,
  5.   Ansmach1 in 'ANSMACH1.PAS' {Form1},
  6.   Ansmach2 in 'ANSMACH2.PAS' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.CreateForm(TAboutBox, AboutBox);
  13.   Application.Run;
  14. end.
  15.