stringlength

 

Get The Length Of A String


Get The Length Of A String

'Insert the following code to your form:

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