18 lines
587 B
ObjectPascal
18 lines
587 B
ObjectPascal
|
|
program GridMenuViewsDemo;
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
GridMenuViewsDemoMain in 'GridMenuViewsDemoMain.pas' {GridMenuViewsDemoMainForm},
|
||
|
|
GridMenuViewsDemoData in 'GridMenuViewsDemoData.pas' {GridMenuViewsDemoDataDM: TDataModule},
|
||
|
|
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.Title := 'ExpressQuantumGrid GridMenuViewsDemo';
|
||
|
|
Application.CreateForm(TGridMenuViewsDemoDataDM, GridMenuViewsDemoDataDM);
|
||
|
|
Application.CreateForm(TGridMenuViewsDemoMainForm, GridMenuViewsDemoMainForm);
|
||
|
|
Application.Run;
|
||
|
|
end.
|