home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 January
/
CHIPCD1_98.iso
/
software
/
testsoft
/
condec
/
condecal.~dp
< prev
next >
Wrap
Text File
|
1997-09-12
|
358b
|
18 lines
program ConDecAl;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1},
Unit2 in 'Unit2.pas' {AboutBox};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'ConDecAl - DEMO';
Application.HelpFile := 'ConDecAl.HLP';
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.