Componentes.Terceros.DevExp.../official/x.30/ExpressQuantumGrid 6/Demos/Delphi/ViewTableSimpleDemo/ViewTableSimpleDemo.dpr
2007-12-16 17:06:54 +00:00

18 lines
612 B
ObjectPascal

program ViewTableSimpleDemo;
uses
Forms,
ViewTableSimpleDemoMain in 'ViewTableSimpleDemoMain.pas' {ViewTableSimpleDemoMainForm},
ViewTableSimpleDemoData in 'ViewTableSimpleDemoData.pas' {ViewTableSimpleDemoMainDM: TDataModule},
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumGrid ViewTableSimple Demo';
Application.CreateForm(TViewTableSimpleDemoMainForm, ViewTableSimpleDemoMainForm);
Application.CreateForm(TViewTableSimpleDemoMainDM, ViewTableSimpleDemoMainDM);
Application.Run;
end.