No problem, I did it.
For anyone who wants to clear the TextBox on MouseClick, use this code:
Private Sub TextBox2_MouseClick(ByVal sender as Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles TextBox2.MouseClick
TextBox2.Text = ""
End Sub