I want my application to respond to Ctrl + M it will do something:
if (e.KeyCode == System.Windows.Forms.Keys.M
&& e.KeyCode == System.Windows.Forms.Keys.RControlKey)
I tried to click Ctrl + M (I tried both left and right Ctrl keys) and it stops at a breakpoint on the if
but never goes in. Why not?