how to open form in maximized state

  • Thread starter John Milbury-Steen
  • 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?
 
D

Dirk Goldgar

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
 

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

Similar Threads


Top