Form Opens Maximized

  • Thread starter Thread starter JackG
  • Start date Start date
J

JackG

In design view form is correct size. Can switch for form view and form size
is correct. Once I close Access and come back into the application this one
form opens Maximized; and yes I am saving the changes. Any suggestions? I
have auto center and auto size turned off as suggested in other notes.

HELP,

Thanks,

PS. Sorta new in Access so please explain clearly and/or with example.
Thanks.
 
In the form properties under "Events", go to On Load and use the code
builder. Then it should look like this:
Private Sub Form_Load()

End Sub

Just add DoCmd.Maximize to it so it looks like this:

Private Sub Form_Load()
DoCmd.Maximize
End Sub
 
Hi: Have you a bit lost. I want the form to open in a window like all other
forms but this one continues to open maximized once I exit the database and
come back in; it works find in Design View and Forms View. It acts as if the
changes are never being saved? This is the only form that is doing this - it
is like Access has lost it's mind! Any suggestions?

Thanks Again,
 
Me Again: Super wierdness. I for grins put in the MINIMIZE command and
again as long as I am in the database in Forms or Design it worked and opened
minimized. I left the database and came back in and when I clicked to start
the form it minimize in a flash and then came back MAXIMIZED without me in
the macro that is causing this.

Thanks,
 
Back
Top