Componentes.Terceros.DevExp.../official/x.19/ExpressQuantumGrid 5/Demos/Delphi/UnboundSimpleDemo/UnboundSimpleDemo.dpr
2007-09-09 11:27:22 +00:00

16 lines
414 B
ObjectPascal

program UnboundSimpleDemo;
uses
Forms,
UnboundSimpleDemoMain in 'UnboundSimpleDemoMain.pas' {UnboundSimpleDemoMainForm},
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumGrid UnboundSimple Demo';
Application.CreateForm(TUnboundSimpleDemoMainForm, UnboundSimpleDemoMainForm);
Application.Run;
end.