Componentes.Terceros.DevExp.../official/x.26/ExpressQuantumGrid 6/Demos/Delphi/ViewBandedDemo/ViewBandedDemo.dpr
2007-09-09 11:27:27 +00:00

20 lines
664 B
ObjectPascal

program ViewBandedDemo;
uses
Forms,
ViewBandedDemoMain in 'ViewBandedDemoMain.pas' {ViewBandedDemoMainForm},
ViewBandedDemoData in 'ViewBandedDemoData.pas' {ViewBandedDemoDataDM: TDataModule},
ViewBandeDemoBands in 'ViewBandeDemoBands.pas' {ViewBandeDemoBandsForm},
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo},
DemoUtils in '..\DemoUtils.pas';
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumGrid ViewBanded Demo';
Application.CreateForm(TViewBandedDemoMainForm, ViewBandedDemoMainForm);
Application.CreateForm(TViewBandedDemoDataDM, ViewBandedDemoDataDM);
Application.Run;
end.