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

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

Guest

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!
 
In the form load event of the form you are opening:


Private Sub Form_Load()
DoCmd.Maximize
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top