forms size

  • Thread starter Thread starter SPM2
  • Start date Start date
S

SPM2

Hi there

I have a form set up as Main Menu which has Command Buttons to do other
tasks, and when finished that task form is closed and sent back to Main
Menu. The problem is that my Main Menu form changes size once the command
button is clicked, and once the task is completed the Main form is no longer
Maximized. Is there something I'm missing. When the form is first opened it
is Maximized. Any Suggestions?

Thanks in Advance
 
Use the statement:

DoCmd.Maximize

in the Form_Activate Event of your Main Menu Form. This means that when
ever the Main Menu Form gets (re-)activated, it will be maximized.
 
Back
Top