Question:
How can I retrieve the number of characters in a string?
Solution:
To do so, use VBScript’s Len function.
Sample script to be executed at a button’s Click event:
Dim Size
Size = Len(“ElipseSoftware”) ‘ Size Variable contains 14.
MsgBox Size