Maximize Form

S

SyrUser03

I have one form in my access DB which loads when it is open.

How do I maximize the open the form itself inside the Access environment. I
know I can maximize it onload, but it takes up the entire screen

Thanks
 
A

Allen Browne

To set the form so that it remains within the Access window, set the form's
Popup property to No.

Then when it is maximized, it will take up all of the Access window, but no
more.
 
R

rico

In the onopen event of the form insert a macro using the command Maximise. If
you dont want everything to open maximised after that, put a macro in the
onclose event of the form with the command Restore.

HTH

Rico
 
Top