home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 2000 March
/
pcp161b.iso
/
handson
/
archive
/
Issue153
/
delphi
/
TreeDir2
/
TreeDir2.dpr
< prev
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
|
1999-03-16
|
221 b
|
15 lines
program TreeDir2;
uses
Forms,
TreeD2 in 'TreeD2.pas' {Form1},
FmxUtils in 'Fmxutils.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.