Componentes.Terceros.DevExp.../official/x.38/ExpressPivotGrid 2/Demos/Delphi/UnboundExternalDemo/UnboundExternalDemo.dpr
2008-08-27 11:56:15 +00:00

16 lines
404 B
ObjectPascal

program UnboundExternalDemo;
uses
Forms,
DemoBasicMain in '..\Common\DemoBasicMain.pas' {frmDemoBaisicMain},
AboutDemoForm in '..\Common\AboutDemoForm.pas' {formAboutDemo},
UnboundExternalMain in 'UnboundExternalMain.pas' {frmUnboundExternal};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmUnboundExternal, frmUnboundExternal);
Application.Run;
end.