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

16 lines
463 B
ObjectPascal

program CellLevelMultiselectDemo;
uses
Forms,
CellLevelMultiselectDemoMain in 'CellLevelMultiselectDemoMain.pas' {CellLevelMultiselectDemoMainForm},
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumGrid CellLevelMultiselect Demo';
Application.CreateForm(TCellLevelMultiselectDemoMainForm, CellLevelMultiselectDemoMainForm);
Application.Run;
end.