open a form maximized

C

Chris

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
 
F

fredg

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
 
Top