Componentes.Terceros.DevExp.../internal/x.36/1/ExpressQuantumGrid 6/Demos/Delphi/ViewBandedDemo/ViewBandedDemo.dpr
2008-09-04 11:31:51 +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.