This function gets the number of characters in the given Sting
Syntax:StringLength(Value)
Where
“Value” is the String from which the length should be computed.
Examples:
Textbox1.Value= StringLength(Textbox2.Value)
Textbox2.Value=”Approved”
The function will return will return 8 since the number of characters in the word “Approved” is 8.