git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
19 lines
674 B
ObjectPascal
19 lines
674 B
ObjectPascal
program MasterDetailTableDemo;
|
|
|
|
uses
|
|
Forms,
|
|
MasterDetailTableDemoData in 'MasterDetailTableDemoData.pas' {MasterDetailTableDemoMainDM: TDataModule},
|
|
MasterDetailTableDemoMain in 'MasterDetailTableDemoMain.pas' {MasterDetailTableDemoMainForm},
|
|
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo},
|
|
DemoUtils in '..\DemoUtils.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'ExpressQuantumGrid Master Detail Table Demo';
|
|
Application.CreateForm(TMasterDetailTableDemoMainDM, MasterDetailTableDemoMainDM);
|
|
Application.CreateForm(TMasterDetailTableDemoMainForm, MasterDetailTableDemoMainForm);
|
|
Application.Run;
|
|
end.
|