Automatically maximizing forms

S

slhenson

I need to find out how to maximize a form when it opens. I do not want the
user to have to maximize the form. Is there a way to set a form to
automatically maximize?
 
R

Rick B

Please post your message once. Posting multiple identical messages to more
than one newsgroup causes people to waste their time answering a question
that may already be answered in your other post.
 
G

Guest

-----Original Message-----
Please post your message once. Posting multiple identical messages to more
than one newsgroup causes people to waste their time answering a question
that may already be answered in your other post.



[email protected]...

in the on open propertys in design view of your form.

Private Sub Form_Open(Cancel As Integer)
docmnd.maximise
End Sub
 
Top