Componentes.Terceros.DevExp.../official/x.38/ExpressQuantumTreeList 4/Demos/Delphi/SimpleListDemo/SimpleListDemo.dpr
2008-08-27 11:56:15 +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.