breezett93
Technical User
I am trying to implement the functions listed here:
I created a button on my form that calls the first function:
I am getting an error message on this line of TestControlsInTabOrder. "2494, action or method requires a Form Name argument. "
I'm not sure what argument would be missing. Only the name is required. Everything else is optional.
I created a button on my form that calls the first function:
Code:
Private Sub btnControlsInTabOrder_Click()
Dim QuoteFrm01 As String
TestControlsInTabOrder (QuoteFrm01)
End Sub
I am getting an error message on this line of TestControlsInTabOrder. "2494, action or method requires a Form Name argument. "
Code:
DoCmd.OpenForm FormName, acDesign
I'm not sure what argument would be missing. Only the name is required. Everything else is optional.