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
 
G

Guest

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
 
G

Guest

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
 

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

Top