Capturing other mouse buttons...
-
I have a Microsoft IntelliMouse Wireless Explorer, which has 3 buttons (left, right and middle) plus 2 other buttons on the side, which normally (by default) act as a back/forward for the web browser, unless otherwise instructed by its options in the Control Panel. How can I capture these buttons and use them as I wish in my application? Sammy "A good friend, is like a good book: the inside is better than the cover..."
-
I have a Microsoft IntelliMouse Wireless Explorer, which has 3 buttons (left, right and middle) plus 2 other buttons on the side, which normally (by default) act as a back/forward for the web browser, unless otherwise instructed by its options in the Control Panel. How can I capture these buttons and use them as I wish in my application? Sammy "A good friend, is like a good book: the inside is better than the cover..."
public enum MouseButtons
{
Left = 1048576;
Middle = 4194304;
None = 0;
Right = 2097152;
XButton1 = 8388608;
XButton2 = 16777216;}