home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programmer's Power Pack
/
Delphi Volume 1.iso
/
s_to_z
/
wptools1
/
demo
/
label
/
project1.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-09-15
|
263 b
|
15 lines
program Project1;
uses
Forms,
Unit1 in 'UNIT1.PAS' {LabelForm},
Unit2 in 'UNIT2.PAS' {EditForm};
{$R *.RES}
begin
Application.CreateForm(TLabelForm, LabelForm);
Application.CreateForm(TEditForm, EditForm);
Application.Run;
end.