L
Lloyd Sheen
I just want to select the complete text when someone enters the textbox
(mouse click etc.). When I am executing within the IDE (VS 2005 Pro) no
problem.
Execute outside the IDE and no select takes place.
Code:
Private Sub tbSearchTxt_Enter(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles tbSearchTxt.Enter
' select all text to make paste of new info easier
tbSearchTxt.SelectAll()
End Sub
Any ideas or is that control broken?
Lloyd Sheen
(mouse click etc.). When I am executing within the IDE (VS 2005 Pro) no
problem.
Execute outside the IDE and no select takes place.
Code:
Private Sub tbSearchTxt_Enter(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles tbSearchTxt.Enter
' select all text to make paste of new info easier
tbSearchTxt.SelectAll()
End Sub
Any ideas or is that control broken?
Lloyd Sheen