winPostVKey(
const vkey1, // virtual key code VK_....
[const vkey2, // virtual key code VK_....
const vkey3]); // virtual key code VK_....
Post a virtual key or a combination of up to 3 virtual keys to the active window.
A window may be activated by winActivate.
In addition to the
predefined virtual keys
found in ZcWinLib.csl, the ASCII codes of uppercase letters A...Z and
digits 0...9 may be used as virtual keys, as strAscii('A') for
example.
Example:
winPostVKey(VK_MENU, strAscii('F')); // post Alt-F
|