Making the "print preview" screen have focus...

  • Thread starter Thread starter Brad Pears
  • Start date Start date
B

Brad Pears

I have a "pop-up" form on which the user enters some printing criteria then
clicks a "print" button to produce a report. When the print preview comes
up, it is behind this pop-up screen. Is there an easy way to get the print
preview to be displayed over everything else on the screen so the user
doesn't have to minimize windows or move them around etc...

Thanks,

Brad
 
I have a "pop-up" form on which the user enters some printing criteria then
clicks a "print" button to produce a report. When the print preview comes
up, it is behind this pop-up screen. Is there an easy way to get the print
preview to be displayed over everything else on the screen so the user
doesn't have to minimize windows or move them around etc...

Thanks,

Brad

Code that form's print button:
DoCmd.OpenReport "ReportName", acViewPreview
Me.Visible = False

Code the Report Close event:
forms!PopUpFormName.Visible = True
 

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

Back
Top