Componentes.Terceros.DevExp.../internal/x.36/1/ExpressQuantumGrid 6/Demos/Delphi/ViewBandedFixedDemo/ViewBandedFixedDemo.dpr
2008-09-04 11:31:51 +00:00

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.