Componentes.Terceros.DevExp.../official/x.38/ExpressQuantumGrid 6/Demos/Delphi/UnboundListDemo/UnboundListDemo.dpr
2008-08-27 11:56:15 +00:00

17 lines
459 B
ObjectPascal

program UnboundListDemo;
uses
Forms,
UnboundListDemoMain in 'UnboundListDemoMain.pas' {UnboundListDemoMainForm},
UnboundListDemoClasses in 'UnboundListDemoClasses.pas',
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumGrid UnboundList Demo';
Application.CreateForm(TUnboundListDemoMainForm, UnboundListDemoMainForm);
Application.Run;
end.