G
Guest
Is there a faster, better, way to highlite all the text in a textbox control
when a user enter that control than the following code?
If (sender.Text.Length > 0) Then
sender.SelectionStart = 0
sender.SelectionLength = sender.Text.Length
sender.Select()
End If
B
when a user enter that control than the following code?
If (sender.Text.Length > 0) Then
sender.SelectionStart = 0
sender.SelectionLength = sender.Text.Length
sender.Select()
End If
B