home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D1 / COOLCALC.ZIP / COOLCALC.DPR < prev    next >
Text File  |  1995-08-11  |  288b  |  15 lines

  1. program Coolcalc;
  2.  
  3. uses
  4.   Forms,
  5.   Ccalcdlg in 'CCALCDLG.PAS' {dlgCalculator},
  6.   Aboutdlg in 'ABOUTDLG.PAS' {dlgAboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'Cool Calculator V1.3 afd';
  12.   Application.CreateForm(TdlgCalculator, dlgCalculator);
  13.   Application.Run;
  14. end.
  15.