Click to See Complete Forum and Search --> : How to send "right ctrl + right shift" combination to control?


Jack Shainsky
December 5th, 1999, 06:57 AM
Hello!

I need to send "right ctrl+right shift" combination to control. I've tried

SendKeys "^+", true



but this sends "left ctrl+left shift". How can I specify that I press right ctrl and shift? (perhaps, there is some other function)

Jack.

Ruth Glushkin
December 6th, 1999, 02:13 AM
Try API Function SendInput with
VK_RCONTROL or &HA3
and VK_RSHIFT or &HA1 values for key codes.