lazarus/examples/treeview/TV_Add_Remove.dpr
mattias 62d535b829 added TreeView demo from Tom Lisjac
git-svn-id: trunk@4297 -
2003-06-23 10:05:39 +00:00

16 lines
224 B
ObjectPascal

program TV_Add_Remove;
uses
Interfaces,
Forms,
TV_Add_Remove_U1;
//in 'TV_Add_Remove_U1.pas' {Form1};
//{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.