What is the send key function for hitting ALT + a
also what is the send key for the right arrow on the key board
thanks
Printable View
What is the send key function for hitting ALT + a
also what is the send key for the right arrow on the key board
thanks
Hey ,
To specify that any combination of SHIFT, CTRL, and ALT should be held down while several other keys are pressed, enclose the code for those keys in parentheses. For example, to specify to hold down SHIFT while E and C are pressed, use "+(EC)". To specify to hold down SHIFT while E is pressed, followed by C without SHIFT, use "+EC".
BTW RIGHT ARROW = {RIGHT}
[]P
Whoa PRIVATE1, don't :confused:confuse:confused: the guy :rolleyes:.
Code:'Alt + a
SendKeys "%a", True
'Right arrow
SendKeys "{RIGHT}", True
what is the send key for the enter button
SendKeys "{ENTER}", True
For more, it's all listed under the SendKeys statement in your VB Help file or MSDN Library.