Componentes.Terceros.DevExp.../official/x.19/ExpressQuantumGrid 5/Demos/Delphi/CustomRowHeightDemo/CustomRowHeightDemo.dpr
2007-09-09 11:27:22 +00:00

18 lines
612 B
ObjectPascal

program CustomRowHeightDemo;
uses
Forms,
CustomRowHeightDemoMain in 'CustomRowHeightDemoMain.pas' {CustomRowHeightDemoMainForm},
CustomRowHeightDemoData in 'CustomRowHeightDemoData.pas' {CustomRowHeightDemoDataDM: TDataModule},
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumGrid CustomRowHeight Demo';
Application.CreateForm(TCustomRowHeightDemoMainForm, CustomRowHeightDemoMainForm);
Application.CreateForm(TCustomRowHeightDemoDataDM, CustomRowHeightDemoDataDM);
Application.Run;
end.