mouseclick on a toostripstatuslabel

  • Thread starter Thread starter GS
  • Start date Start date
G

GS

how can I tell if it is right mouse click from left mouseclick?
I would also to test if a key like control is being held down at the same
time.

what I would really like to is to capture control right mouse click for
debugging purpose. in a generic event handler.
 
how can I tell if it is right mouse click from left mouseclick?

The MouseClick event uses "ByVal e As
System.Windows.Forms.MouseEventArgs" parameter. Use e.button returns
which button was clicked.

Thanks,

Seth Rowe
 
thx
If e.Button = Windows.Forms.MouseButtons.Right Then

works out well for.
thx again


BTW what can I use e.button.right or left for?
 
Back
Top