TextBox Event Error
Could somebody explain why this throws an error please?
Private Sub TextBox1_Change()
i = 1
MsgBox TextBox & i & .Value
End Sub
I get this error at .Value:
Compile error:
Invalid or unqualified reference.
If posible, could the correct syntax for writing this be provided?
|