git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jcl@20 c37d764d-f447-7644-a108-883140d013fb
15 lines
275 B
ObjectPascal
15 lines
275 B
ObjectPascal
program TreeStructure;
|
|
|
|
uses
|
|
Forms,
|
|
TreeStructureMain in 'TreeStructureMain.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
{$R ..\..\..\..\source\windows\JclCommCtrlAsInvoker.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|