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

18 lines
600 B
ObjectPascal

program ViewCardSimpleDemo;
uses
Forms,
ViewCardSimpleDemoMain in 'ViewCardSimpleDemoMain.pas' {ViewCardSimpleDemoMainForm},
ViewCardSimpleDemoData in 'ViewCardSimpleDemoData.pas' {ViewCardSimpleDemoMainDM: TDataModule},
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumGrid ViewCardSimple Demo';
Application.CreateForm(TViewCardSimpleDemoMainForm, ViewCardSimpleDemoMainForm);
Application.CreateForm(TViewCardSimpleDemoMainDM, ViewCardSimpleDemoMainDM);
Application.Run;
end.