Pop up form

  • Thread starter Thread starter Sandy H
  • Start date Start date
S

Sandy H

I should know the answer to this but I am drawing a blank. I have a database
with a pop up form. From the popup form, I want the user to be able to click
a button to bring up a report in front of the pop up form and leave the form
open behind the report. Is this possible?

Thanks in advance
Sandy
 
Excellent. Thank you.

AccessVandal via AccessMonster.com said:
In your report's OnOpen event, to hide the form

Forms!YourPopupFormName!Visible = False

And in the OnClose event, to make visible

Forms!YourPopupFormName!Visible = True
 
Back
Top