form not restoring

  • Thread starter Thread starter troy
  • Start date Start date
T

troy

Hello, I have a main form that I have cmd buttons on to launch other forms
from. The main form is not suppose to be maximized, but when I close a form
to go back to my main form it is. How can I stop this from happening?

Thanks!
 
Is the form you're going back from maximized?

When you maximize a form, you maximize all forms. There's no way around
this.

Try putting code in the main form's Activate event to restore it:

DoCmd.Restore
 
Back
Top