Viewing Forms Correctly

S

sonfitz

vI have a small problem, my main form has two tabs at the top of the screen.
The tabs work great however, when you access that form for the first time the
screen adjusts itself so that you cannot see the tabs unless you use the
scroll bars to re-adjust the scren accordingly. Is there a setting that I'm
missing to tell access to make sure that the tabs can be viewed all the time
without having to re-adjust the screen?

Thanks
 
J

Jerry Whittle

In the On Open event of the form put the following in code.

DoCmd.Maximize

On the On Close event, put the following:

DoCmd.Restore (not minimize!)
 
Top