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