Open Report

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hi

I'm opening my report from a form and I'm opening it as
acDialogue but in this case I'm enable to access the
print option how can I fix this problem

And I have four Report I have to open at the same time so
I want the user to visualise and after to print

This is what I put as code:

DoCmd.OpenReport stPiece, acPreview, , strWhere, acDialog

DoCmd.OpenReport stTime, acPreview, , strWhere, acDialog


Who can I resolve this problem of printing with the
acDialog?

Thanks
 
Chris,

The acDialog option means exactly the behaviour you are seeing... you
can't do anything else until you close the window. The solution is to
not use acDialog. What is your reason for want to use acDialog
anyway?

- Steve Schapel, Microsoft Access MVP
 
Thanks Steeve

I'm using acDialog because I have a form I using it as
BAckground for my application,

Thanks
 
I see. Do you mean that if you don't use acDialog for the reports,
then the report preview is hidden behind the form? One possibility
might be to make the form hidden (Visible = False) when you open the
reports, and then make it visible again when the reports close.

- Steve Schapel, Microsoft Access MVP
 
Back
Top