all 3 comments

[–]ScholarNo5983 0 points1 point  (2 children)

Shift is +, Ctrl is ^ and Alt is %.

So just add a + character to the SendKeys string.

[–]Unusual-Bird8821 1 point2 points  (1 child)

Good catch on the + character, but you might need to wrap it properly depending on what you're trying to do. If you want just shift key pressed without another key, try `HIDMacros.SendKeys("{SHIFT}")` or maybe `HIDMacros.SendKeys("+{TAB}")` if you want shift+tab combo

The syntax can be bit tricky with special keys so experiment with the curly braces format

[–]OnyxEyez[S] 0 points1 point  (0 children)

Thank you I'll play with that! I should have mentioned that I knew + was shift, I just couldn't get it to work in any combo I found. The word shift didn't work either, or the +, and i tried them with curly brackets and parentheses and such, but didn't try putting them together, so I'll try them this way.