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

16 lines
376 B
ObjectPascal

program OLAPBrowser;
uses
Forms,
DemoBasicMain in '..\Common\DemoBasicMain.pas' {frmDemoBaisicMain},
AboutDemoForm in '..\Common\AboutDemoForm.pas' {formAboutDemo},
OLAPBrowserMain in 'OLAPBrowserMain.pas' {frmOlapBrowser};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmOlapBrowser, frmOlapBrowser);
Application.Run;
end.