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:
Text File  |  1999-03-16  |  221 b   |  15 lines

  1. program TreeDir2;
  2.  
  3. uses
  4.   Forms,
  5.   TreeD2 in 'TreeD2.pas' {Form1},
  6.   FmxUtils in 'Fmxutils.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.