git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
21 lines
745 B
ObjectPascal
21 lines
745 B
ObjectPascal
program DragDropDemo;
|
|
|
|
uses
|
|
Forms,
|
|
DragDropDemoMain in 'DragDropDemoMain.pas' {DragDropDemoMainForm},
|
|
DragDropDemoData in 'DragDropDemoData.pas' {DragDropDemoMainDM: TDataModule},
|
|
DragDropDemoDictionaries in 'DragDropDemoDictionaries.pas' {DragDropDemoDictionariesForm},
|
|
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo},
|
|
DemoUtils in '..\DemoUtils.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'ExpressQuantumGrid DragDropDemo';
|
|
Application.CreateForm(TDragDropDemoMainDM, DragDropDemoMainDM);
|
|
Application.CreateForm(TDragDropDemoMainForm, DragDropDemoMainForm);
|
|
Application.CreateForm(TDragDropDemoDictionariesForm, DragDropDemoDictionariesForm);
|
|
Application.Run;
|
|
end.
|