Componentes.Terceros.DevExp.../official/x.30/ExpressQuantumGrid 6/Demos/Delphi/ViewBandedFixedDemo/ViewBandedFixedDemo.dpr
2007-12-16 17:06:54 +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.