git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@7 05c56307-c608-d34a-929d-697000501d7a
16 lines
463 B
ObjectPascal
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.
|