git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
18 lines
604 B
ObjectPascal
18 lines
604 B
ObjectPascal
program ViewBandedFixedDemo;
|
|
|
|
uses
|
|
Forms,
|
|
ViewBandedFixedMain in 'ViewBandedFixedMain.pas' {ViewBandedFixedDemoMainForm},
|
|
ViewBandedFixedMainData in 'ViewBandedFixedMainData.pas' {ViewBandedFixedDemoDMMain: TDataModule},
|
|
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'ExpressQuantumGrid ViewBandedFixed Demo';
|
|
Application.CreateForm(TViewBandedFixedDemoMainForm, ViewBandedFixedDemoMainForm);
|
|
Application.CreateForm(TViewBandedFixedDemoDMMain, ViewBandedFixedDemoDMMain);
|
|
Application.Run;
|
|
end.
|