how to open form in maximized state

  • Thread starter Thread starter John Milbury-Steen
  • Start date Start date
J

John Milbury-Steen

Hi Access gurus,


What property of a form do you use to make sure that it always opens in a
maximized state?
 
John Milbury-Steen said:
Hi Access gurus,


What property of a form do you use to make sure that it always opens
in a maximized state?

There is no property for that, but you can put code in the form's Open
or Load event that maximizes it; for example:

Private Sub Form_Open(Cancel As Integer)
DoCmd.Maximize
End Sub
 
Back
Top