Componentes.Terceros.DevExp.../official/x.26/ExpressQuantumTreeList 4/Demos/Delphi/SimpleListDemo/SimpleListDemo.dpr
2007-09-09 11:27:27 +00:00

21 lines
761 B
ObjectPascal

program SimpleListDemo;
uses
Forms,
SimpleListDemoMain in 'SimpleListDemoMain.pas' {SimpleListDemoMainForm},
SimpleListDemoData in 'SimpleListDemoData.pas' {SimpleListDemoDataDM: TDataModule},
DemoRating in '..\Common\DemoRating.pas' {DemoRatingForm},
DemoBasicAbout in '..\Common\DemoBasicAbout.pas' {DemoBasicAboutForm},
DemoBasicMain in '..\Common\DemoBasicMain.pas' {DemoBasicMainForm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumTreeList4 SimpleList Demo';
Application.HelpFile := '..\..\Help\EQTreeList4.hlp';
Application.CreateForm(TSimpleListDemoMainForm, SimpleListDemoMainForm);
Application.CreateForm(TSimpleListDemoDataDM, SimpleListDemoDataDM);
Application.Run;
end.