Does anyone have any source that counts the number of charachters in a string/textbox ?
Printable View
Does anyone have any source that counts the number of charachters in a string/textbox ?
Code:
myString$ = "Hello World!"
charCount = Len(myString)
MsgBox "There are " & charCount & " characters in your string!"