SetFocus method, LineCount, TextLength properties example
The following example counts the characters and the number of lines of text in a TextBox by using the LineCount and TextLength properties, and the SetFocus method.
In this example, the user can type into a TextBox, and can retrieve current values of the LineCount and TextLength properties.
To use this example, copy this sample code to the Declarations portion of a form. Make sure that the form contains the following controls:
- A TextBox named TextBox1.
- A CommandButton named CommandButton1.
- Two Label controls named Label1 and Label2.
'Type SHIFT+ENTER to start a new line in the text box.
Private Sub CommandButton1_Click()
'Must first give TextBox1 the focus to get line
'count
TextBox1.SetFocus
Label1.Caption = "LineCount = " _
& TextBox1.LineCount
Label2.Caption = "TextLength = " _
& TextBox1.TextLength
End Sub
Private Sub UserForm_Initialize()
CommandButton1.WordWrap = True
CommandButton1.AutoSize = True
CommandButton1.Caption = "Get Counts"
Label1.Caption = "LineCount = "
Label2.Caption = "TextLength = "
TextBox1.MultiLine = True
TextBox1.WordWrap = True
TextBox1.Text = "Enter your text here."
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.