Make the Screen stay maximized

A

angela patrikka

Can someone please explain how i get the screens to always stay maximized,
whether it be a form, the switchboard or a report.
I have created a macro called Maximize and added to the Event Tab of OnLoad,
but after I run a report, the screens all return to restored.

Ang
 
W

Wayne-in-Manchester

Put this code behind the "OnActivate" tab on either a form or report


Private Sub Form_Activate()
DoCmd.Maximize
End Sub

Or

Private Sub Report_Activate()
DoCmd.Maximize
End Sub
 
W

Wayne-in-Manchester

You could always use the windows max option

Windows logo key+M will max all screens
CTRL+F9 will max and office (inc. access) document
 
Top