Componentes.Terceros.DevExp.../internal/x.36/1/ExpressQuantumGrid 6/Demos/Delphi/CustomDrawCardViewDemo/CustomDrawCardViewDemo.dpr
2008-09-04 11:31:51 +00:00

21 lines
761 B
ObjectPascal

program CustomDrawCardViewDemo;
{$R 'CustomDrawCardViewDemoImages.res' 'CustomDrawCardViewDemoImages.rc'}
uses
Forms,
CustomDrawCardViewDemoMain in 'CustomDrawCardViewDemoMain.pas' {CustomDrawCardViewDemoMainForm},
CustomDrawCardViewDemoData in 'CustomDrawCardViewDemoData.pas' {CustomDrawCardViewDemoMainDM: TDataModule},
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo},
DemoUtils in '..\DemoUtils.pas';
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumGrid CustomDrawCardView Demo';
Application.CreateForm(TCustomDrawCardViewDemoMainDM, CustomDrawCardViewDemoMainDM);
Application.CreateForm(TCustomDrawCardViewDemoMainForm, CustomDrawCardViewDemoMainForm);
Application.Run;
end.