open a form maximized

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

Guest

Hello,

Is there anyway in Access to always open a form maximized. I've tried saving the form when Maximixed and removed the close and min/max buttons from the form to try to prevent the user from changing the form size. Any help is appreciated.

Thank you
 
Hello,

Is there anyway in Access to always open a form maximized. I've
tried saving the form when Maximixed and removed the close and
min/max buttons from the form to try to prevent the user from
changing the form size. Any help is appreciated.

Thank you

Code the Form's Open event:
DoCmd.Maximize
 
Back
Top