Startup form not displaying how I want

  • Thread starter Thread starter KLR
  • Start date Start date
K

KLR

I have a form in a database that is set as the default form to display.

My problem is that when it opens, it doesn't fill the entire screen - I
have to manually maximise it.

Auto Resize property is set to No and the form was saved as the size
that I wanted, but still no joy.
 
In the form's Open event, put the line DoCmd.Maximize.

Be aware, though, that this means that all forms in your application will be
maximized.
 
Back
Top