A family of Microsoft relational database management systems designed for ease of use.
You can set the Visible property to False:
Me.Visible = False
DoCmd.OpenReport "myReport", ...
Then in the Report's Close event to set the form to be visible again:
Forms!myForm.Visible = True
-Tom. Microsoft Access MVP