home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Demos / CustomDraw / customdraw.dpr next >
Text File  |  1999-08-11  |  243b  |  14 lines

  1. program CustomDraw;
  2.  
  3. uses
  4.   Forms,
  5.   CustomDrawTreeView in 'CustomDrawTreeView.pas' {CustomDrawForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TCustomDrawForm, CustomDrawForm);
  12.   Application.Run;
  13. end.
  14.