J
Johnny J.
How do you check if the Control, Shift or Alt key is pressed at any given
time (not necessarily in a keyevent)?
Cheers,
Johnny J.
time (not necessarily in a keyevent)?
Cheers,
Johnny J.
Johnny said:How do you check if the Control, Shift or Alt key is pressed at any
given time (not necessarily in a keyevent)?
How do you check if the Control, Shift or Alt key is pressed at any given
time (not necessarily in a keyevent)?
Cheers,
Johnny J.
Phillip Taylor said:If (My.Computer.Keyboard.AltKeyDown) Then
or
If (My.Computer.Keyboard.CtrlKeyDown) Then
or
If (My.Computer.Keyboard.ShiftKeyDown) Then
Phillip Taylor