Componentes.Terceros.DevExp.../official/x.38/ExpressQuantumGrid 6/Demos/Delphi/ViewBandedDemo/ViewBandedDemo.dpr
2008-08-27 11:56:15 +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.