I am trapping a KeyDown event and I need to be able to check whether the current keys pressed down are : Ctrl + Shift + M ?
KeyDown
I think its easiest to use this:
if(e.KeyData == (Keys.Control | Keys.G))