by Alex Fredricks (4 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 3.0
Difficulty: Beginner
Date Added: Wed 3rd February 2021
Rating:
(6 Votes)
Highlight textbox/combobox and its entire contents. Simple but cosmetically useful.
Public Sub Focus(varX As Variant)
'selects entire txtbox
With varX
If .Text <> "" Then
.SelStart = 0
.SelLength = Len(.Text)
End If
End With
End Sub
''''''''''''''''''''''''''''''''''''
call statement
''''''''''''''''''''''''''''''''''''
Private Sub txtStoreNo_GotFocus()
Focus txtstoreno
End Sub