How to set a form's size while in form view?

K

KatK

I need to have a form be maximized all the time. This form is automatically
opened when the database is opened. I have tried everything I can think of,
but everytime I reopen the database, the form is not maximized.

Thanks!
 
B

Bill Edwards

In the form load event of the form you are opening:


Private Sub Form_Load()
DoCmd.Maximize
End Sub
 
Top