Componentes.Terceros.DevExp.../official/x.30/ExpressQuantumGrid 6/Demos/Delphi/UnboundSimpleDemo/UnboundSimpleDemo.dpr
2007-12-16 17:06:54 +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.