Componentes.Terceros.DevExp.../official/x.33/ExpressQuantumGrid 6/Demos/Delphi/UnboundSimpleDemo/UnboundSimpleDemo.dpr
2008-03-26 12:15:03 +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.