How to Sendkey + on the Numeric Keypad
Keywords: Numeric Keypad
Question:
When I'm in the options-menu I have to send a +-key to open one of the menus. The Macro-Recorder saves that as a +.I figured out that I have to use the + at the numeric keypad. The + at the alphanumeric keyboard don't work.
Any idea to get the + at the numeric keypad?
Answer:
UseSendkey("{RIGHT}").It works instead of plus.
Starting with version 98A of Winbatch, added additional special characters to the SendKey (and SendKeysTo and SendKeysChild) functions:Key SendKey equivalent --- ------------------ 0 on numeric keypad {NUMPAD0} 1 on numeric keypad {NUMPAD1} 2 on numeric keypad {NUMPAD2} 3 on numeric keypad {NUMPAD3} 4 on numeric keypad {NUMPAD4} 5 on numeric keypad {NUMPAD5} 6 on numeric keypad {NUMPAD6} 7 on numeric keypad {NUMPAD7} 8 on numeric keypad {NUMPAD8} 9 on numeric keypad {NUMPAD9} * on numeric keypad {NUMPAD*} + on numeric keypad {NUMPAD+} - on numeric keypad {NUMPAD-} . on numeric keypad {NUMPAD.} / on numeric keypad {NUMPAD/} Enter on numeric keypad {NUMPAD~} (32-bit only)
Article ID: W13838Filename: Sendkey Plus on Numeric Keyboard.txt