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.
 
Place the following code in the Activate event of the form:

DoCmd.Maximize
 
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
 
Use this in the properties page for the On Open event for
the form.

=DoCmd.Maximize
 
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.
 

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

Back
Top