Componentes.Terceros.DevExp.../internal/x.36/1/ExpressQuantumGrid 6/Demos/Delphi/ViewCardSimpleDemo/ViewCardSimpleDemo.dpr
2008-09-04 11:31:51 +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.