lazarus/examples/treeview/TV_Add_Remove.dpr
mattias 705588570b examples: tv_add_remove: updated
git-svn-id: trunk@38146 -
2012-08-04 10:33:06 +00:00

14 lines
242 B
ObjectPascal

program TV_Add_Remove;
uses
Interfaces,
Forms,
TV_Add_Remove_U1 in 'TV_Add_Remove_U1.pas' {Form1};
begin
Application.Title:='TV_Add_Remove';
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.