How do I determine if the user pressed both the left and right mouse buttons at the same time?
The catch is that I want to know this information from the MouseDown event, not the MouseMove event.
MouseDown - Button = the button which caused the event
MouseMove - Button = collective state of pressed buttons
It's the latter Button state that I want, but I do not want to have to use the MouseMove event?
Any ideas?
