Private Sub TextBox1_MouseDown(ByVal sender As System.Object, ByVal e As MouseEventArgs) Handles TextBox1.MouseDown
Select Case e.Button
Case MouseButtons.Left
Me.TextBox1.SelectAll()
End Select
End Sub
What i would like to do is cancel the click after me.textbox1.selectall, for keydown you can do e.handled but for the mouse click that does not work. Thanks for any help.
Select Case e.Button
Case MouseButtons.Left
Me.TextBox1.SelectAll()
End Select
End Sub
What i would like to do is cancel the click after me.textbox1.selectall, for keydown you can do e.handled but for the mouse click that does not work. Thanks for any help.