Resizing

Hustle1081

Registered User.
Local time
Today, 23:58
Joined
Jan 8, 2004
Messages
16
I know this may seem like an easy and trivial problem I am having a hard time solving this minor problem. When I maximize a form all forms that I go to afterwards are also maximized, I would like to keep each form to its original set form. Does anyone know how to do this, I am sure the answer is right in front of my eyes but I am just missing it because it is too easy.
 
When you maximize one form in Access all other forms are also Maximized and that goes the same with Reports.

I usually have code in the Open event of the form that maximizes (if I want it maximized)
Code:
DoCmd.Maximize

and then in the form's close event I put:
Code:
DoCmd.Restore
and that resets it back to the way all of the other forms or reports are sized.
 
Thanks I will try that
 

Users who are viewing this thread

Back
Top Bottom