/jcl/examples/common/containers/trees/TreeStructure.dpr

https://github.com/the-Arioch/jcl · Pascal · 14 lines · 9 code · 3 blank · 2 comment · 0 complexity · 0cc63f23c960cf2e2a1ac0d1bace7d5c MD5 · raw file

  1. program TreeStructure;
  2. uses
  3. Forms,
  4. TreeStructureMain in 'TreeStructureMain.pas' {Form1};
  5. {$R *.res}
  6. {$R ..\..\..\..\source\windows\JclCommCtrlAsInvoker.res}
  7. begin
  8. Application.Initialize;
  9. Application.CreateForm(TForm1, Form1);
  10. Application.Run;
  11. end.