home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Plus! (NZ) 2001 June
/
HDC50.iso
/
Runimage
/
Delphi50
/
Demos
/
CustomDraw
/
customdraw.dpr
next >
Wrap
Text File
|
1999-08-11
|
243b
|
14 lines
program CustomDraw;
uses
Forms,
CustomDrawTreeView in 'CustomDrawTreeView.pas' {CustomDrawForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TCustomDrawForm, CustomDrawForm);
Application.Run;
end.