In this example, you will learn about string handling function called Len() which return the length of a given string.
VB Code
Private Sub Command1_Click()
Dim str As String
str = Text1.Text
Text2.Text = Len(str)
End Sub
Output – Len()

In this example, you will learn about string handling function called Len() which return the length of a given string.
Private Sub Command1_Click()
Dim str As String
str = Text1.Text
Text2.Text = Len(str)
End Sub