home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D1
/
COOLCALC.ZIP
/
COOLCALC.DPR
< prev
next >
Wrap
Text File
|
1995-08-11
|
288b
|
15 lines
program Coolcalc;
uses
Forms,
Ccalcdlg in 'CCALCDLG.PAS' {dlgCalculator},
Aboutdlg in 'ABOUTDLG.PAS' {dlgAboutBox};
{$R *.RES}
begin
Application.Title := 'Cool Calculator V1.3 afd';
Application.CreateForm(TdlgCalculator, dlgCalculator);
Application.Run;
end.