|
You add the mousedown of another textbox after the Handles of the mousedown event of a textbox
such as
Private Sub textbox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)Handles textbox1.MouseDown, textbox2.MouseDown
'You need to deal
end sub
Write click event is estimated to be the same
Private Sub textbox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)Handles textbox1.Click, textbox2.Click
'You need to deal
end sub |
|