Hello. I have a form that has multiple command buttons that, on click, would direct me to other forms.
In my Main form, I put the auto maximize code in it's Open event:
the problem is, when I open the other forms through the command buttons, it also maximizes those forms. Is there anyway I can have it work only for the Main form and NOT any other forms I open?
In my Main form, I put the auto maximize code in it's Open event:
Code:
Private Sub Form_Open(Cancel As Integer)
DoCmd.Maximize
End Sub
the problem is, when I open the other forms through the command buttons, it also maximizes those forms. Is there anyway I can have it work only for the Main form and NOT any other forms I open?