Maximize Form

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,
 
S

StCyrM

Hi Amy

On the form load event enter

DoCmd.Maximize

Best Regards

Maurice St-Cyr
Micro Systems Consultants, Inc.
 
M

M Skabialka

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
 
L

Lynn Trapp

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.
 
Top