winPostVKey

C Scripting Language
Reference Manual
Version 4.4.0

<< Back  End  Next >>
 
 
INDEX
Introduction
Installation
Using the CSL executive
Language
Directives
System library
String library
Math library
Regular expression lib.
File library
Database library
Async Communication
Registry/Profile handling
Windows control
   winActivate
   winClose
   winCapsLock
   winFind
   winHide
   winIsMaximized
   winIsMinimized
   winIsVisible
   winMaximize
   winMinimize
   winNumLock
   winPostText
   winPostVKey
   winPrintScreen
   winRestore
   winScrollLock
   winShow
   Sample (notepd.csl)
C API
C++ Class Interface
CSL links
  
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

  Copyright © IBK Landquart Last revision: 27.05.2002 << Back  Top  Next >>