Componentes.Terceros.DevExp.../official/x.26/ExpressQuantumGrid 6/Demos/Delphi/ViewCardSimpleDemo/ViewCardSimpleDemo.dpr
2007-09-09 11:27:27 +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.