Componentes.Terceros.DevExp.../official/x.26/ExpressQuantumGrid 6/Demos/Delphi/UnboundListDemo/UnboundListDemo.dpr

17 lines
459 B
ObjectPascal
Raw Normal View History

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.