Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have my database set to startup on a form. The form will never open up to
full screen, it opens up about 80%. Each time I have to click the full
screen button in the upper right of the form. How can I get the form to stay
full screen and/or open up full screen?
 
See if this works..

Open the form in design mode, right click on the box between the two rulers,
and change "auto resize" to No.
 
I don't think that will do it. In the Open event of the form:
DoCmd.Maximize
 
Do this: In the <On Load> event for the form type (Form design, proprerties,
form, event)
DoCmd.maximize
This works.

jim at andersonsoftware dot ca
 

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