home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 January / CHIPCD1_98.iso / software / testsoft / condec / condecal.dpr < prev    next >
Text File  |  1997-09-12  |  358b  |  18 lines

  1. program ConDecAl;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'Unit1.pas' {Form1},
  6.   Unit2 in 'Unit2.pas' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.Title := 'ConDecAl - DEMO';
  13.   Application.HelpFile := 'ConDecAl.HLP';
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.