Capturing ALT+SHIFT or ALT+CONTROL Together

Beast

Newcomer
Joined
Feb 24, 2003
Messages
1
I am having real trouble seeing if the ALT & SHIFT keys have both been pushed together... I can see if one has been hit with the keys.modifires but i can't seem to see if both alt and shift are down at the same time. anyone know how to do this.
 
Visual Basic:
If ((ModifierKeys And Keys.Alt) = Keys.Alt) And ((ModifierKeys And Keys.Shift) = Keys.Shift) Then
 
Back
Top