Sends one or more keystrokes to the active window (as if typed on the keyboard).
SendKeys Method Windows Scripting 5.8 Sends one or more keystrokes to the active window (as if typed on the keyboard). Copy object.SendKeys(string) Arguments object WshShell object. string String value indicating the keystroke(s) you want to send. Remarks Use the SendKeys method to send keystrokes to applications that have no automation interface. Most keyboard characters are represented by a single keystroke. Some keyboard characters are made up of combinations of keystrokes (CTRL+SHIFT+HOME, for example). To send a single keyboard character, send the character itself as the string argument. For example, to send the letter x, send the string argument "x". Note: […]
Read more