Componentes.Terceros.DevExp.../official/x.38/ExpressQuantumGrid 6/Demos/Delphi/MasterDetailTableDemo/MasterDetailTableDemo.dpr
2008-08-27 11:56:15 +00:00

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.