Refresh a BusinessObjects report

G

Guest

Hello,

I don't know if it is the right place, but I try.

I found the way to open a BO report via MS ACCESS:
Dim objBO As Object

Set objBO = CreateObject("BusinessObjects.Application")
With objBO.Application
.LoginAs "xxx", "xxx", False, "xxx"
.Visible = True
'Open the Workbook
.Documents.Open "xxxxxxxx.rep"
End With
Set objBO = Nothing

But, how to refresh it?
I tried several syntax without success?

Can someone help me?

Thanks in advance,

Fabbe
 
D

David C. Holley

I would contact Business Objects directly or snoop around on the
internet for some sort of user manual or reference that provides the
various objects, properties and methods. For the records, I haven't used
BO for sometime, but its nice to see that they've buildt a VBA interface.
 
R

RD

Wow! I've been looking for info on getting as far as you have. Thanks for a
start.

Now, BO has an "Experts forum" on their website. I asked a question there once
but figured out what I was doing and never went back. I suppose I should since
BO is one of my most used tools around here.

Where did you find methods and properties for the BO object?

Regards,
RD
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top