Forms

S

Sean

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?
 
M

Matt

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

tynerr

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
 
Top