how to make a mouseover effect in the textbox?

Code:
    Private Sub TextBox2_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles TextBox2.MouseDown
        If e.Button = MouseButtons.Left Then
            TextBox2.Text = ""
        End If
    End Sub
 
just use the ENTER Event of TextBOX

and add code

textbox.seletall()
 
Back
Top