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

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
 
F

fredg

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
 
Top