I have a label on a Windows form. I have the following code which doesn't
work when I mouse over the label. Any idea why? If I change MouseHover to
MouseEnter it works. So, what good is MouseHover?
Private Sub Label1_MouseHov er(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles Label1.MouseHov er
Label1.Text = "Yo mama"
End Sub
Thanks,
Ron
work when I mouse over the label. Any idea why? If I change MouseHover to
MouseEnter it works. So, what good is MouseHover?
Private Sub Label1_MouseHov er(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles Label1.MouseHov er
Label1.Text = "Yo mama"
End Sub
Thanks,
Ron
Comment