Maximize Form

  • Thread starter Thread starter amy
  • Start date Start date
A

amy

I have a form "Registration". I want the form to open as
maximized on the screen. How can I do that?

Thanks you for helping,
 
Hi Amy

On the form load event enter

DoCmd.Maximize

Best Regards

Maurice St-Cyr
Micro Systems Consultants, Inc.
 
Open the properties window, under Events:
On Open
=[DoCmd].[maximize]

And if you want it to go back to a normal, not maximised, previous form:
On Close
=[DoCmd].[restore]

This works on reports too.

HTH
Mich
 
I would recommend using the Activate event instead. If the user navigates
away from the form and restores the objects, then navigating back to the
form it will immediately maximize again.
 
Back
Top