Automatically maximizing forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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.
 
-----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.



(e-mail address removed)...

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

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