Get The Length Of A String

'Insert the following code to your form:

Private Sub Form_Load()
MyString="MyText"
MsgBox Len(MyString)
End Sub

Go Back