git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
21 lines
761 B
ObjectPascal
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.
|