Forms will not stay max.

  • Thread starter Russ via AccessMonster.com
  • Start date
R

Russ via AccessMonster.com

Ok, I have a main form that I open then max. when I open another form from
that form it is max. but when I close the second form it restores the
original form.

What am I doing wrong.......
 
D

Dirk Goldgar

Russ via AccessMonster.com said:
Ok, I have a main form that I open then max. when I open another form
from that form it is max. but when I close the second form it
restores the original form.

What am I doing wrong.......

You must have code somewhere, maybe in the Close, Unload, or Deactivate
event of the second form, that executes the statement

DoCmd.Restore

The maximized or restored state applies to all forms.
 
Top