If I have a procedure that says
and a procedure that says:
within the same forms vba,
dont they do the same thing by making the form they reference the maximum size?
Code:
Private Sub Form_GotFocus()
DoCmd.Maximize
End Sub
and a procedure that says:
Code:
Private Sub Form_Activate()
DoCmd.Maximize
End Sub
within the same forms vba,
dont they do the same thing by making the form they reference the maximum size?