Componentes.Terceros.DevExp.../official/x.26/ExpressQuantumGrid 6/Demos/Delphi/UnboundListDemo/UnboundListDemo.dpr
2007-09-09 11:27:27 +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.