home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 5 for Professionals
/
DELPHI5.iso
/
AddOns
/
Books
/
4
/
EX23.ZIP
/
CUST_LOG.DPR
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-01-15
|
236 b
|
15 lines
program Cust_log;
uses
Forms,
Unit1 in 'UNIT1.PAS' {Form1},
Unit2 in 'UNIT2.PAS' {Form2};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.Run;
end.