I'm using the following code to notify the user that they can only use a certain amount of characters.
How can I prevent them from continuing instead of just a text box?
If (Len(Msite) > 29) Then MsgBox "Text too long - Max 29 Characters", vbOKOnly
How can I prevent them from continuing instead of just a text box?
If (Len(Msite) > 29) Then MsgBox "Text too long - Max 29 Characters", vbOKOnly