Can't Keep form(s) maximized when navigating.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Good-day,
I have a project with a switchboard, the switchboard form has the
docmd.maximize command in its on open event the form then stays open and I
would click a button which opens another form that displays an overview of
orders, the orders form opens in a maximized state and the user would select
an order from a subform that they want to modify and double click on it, this
in turn opens an update form, the user makes the updates and then closes the
update form, however at this point the overview form is NO LONGER maximized,
and neither is the switchboard form. What is going on here that is causing
this and how Can I keep all my windows maximized? I have not put the restore
even in here anywhere, so I can rule that out.
Greatly appreciate any help on this.
Todd
 
Move the docmd.maximize to the OnActivate event of the form instead of the
OnLoad, that way, every time you go back to the form it will maximize
 
I had to add the docmd.maximize to the onactivate event of ALL my forms. It
works however.
Thank you.
Todd
 
Back
Top