Access 2003 Form view _ Using a check Box to return a 5 in a text box. The check box runs a macro
I get a msg wrong syntax
using an operand without an operator
Code:
"Private" Sub Check0_Click()
If Me. Check0 [= -1] Then
Me. Text4 [=+5]
Else
Me. Text4 ""
End If
End Sub
using an operand without an operator
Comment