form auto expand

C

Chris

Hi All. One of my forms when loaded, always automatically expands to full
size. However, I do not want it to do this.

How can I stop it from doing so?

Cheers
 
R

Rick Brandt

Chris said:
Hi All. One of my forms when loaded, always automatically expands to
full size. However, I do not want it to do this.

How can I stop it from doing so?

Check to see if there is a code or macro specified in the form's Open or Load
events that is calling the Maximize method. If there is simply remove that.

Note that Access is an MDI application and that maximizing one object causes all
objects to be maximized, the exception being forms with their PopUp property
being True. So if you have a form or report maximized when the form in question
is opened then that is why it is opening maximized.
 
Top