Componentes.Terceros.jvcl/official/3.32/examples/JvCheckTreeView/CheckTVDemo.dpr

14 lines
236 B
ObjectPascal
Raw Normal View History

program CheckTVDemo;
uses
Forms,
CheckTVDemoFrm in 'CheckTVDemoFrm.pas' {frmCheckTVDemo};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmCheckTVDemo, frmCheckTVDemo);
Application.Run;
end.