does anyone know how to get Form_MouseMove sub or function ?
Printable View
does anyone know how to get Form_MouseMove sub or function ?
You'll find it in the "Overrides" section at the top of the code window, not the "form1" section, I have no idea why it's like this:
VB Code:
Protected Overrides Sub OnMouseMove(ByVal e As System.Windows.Forms.MouseEventArgs) MsgBox("mouse moved") End Sub
I dunno what's the difference of this one with the other category "Base class events", but it works I guess:D
Thanks a lot !