GetWindowAnyKeyState

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > Keyboard >

GetWindowAnyKeyState

 

Description

 

Determines whether one or more keys are pressed at the same time when this function is executed.

 

Syntax

 

n = GetWindowMultiKeyState(hWnd, vKey1 [, vKey2 [, ...]] )

 

Returns

 

Number: %TRUE or %FALSE

If any of the specified keys is down, function will return %TRUE.

 

Parameters

 

Name

Type

Optional

Meaning

hWnd

Number

No

Handle of the window to check if currently active

vKey_

Number

No

Specifies any keys of one of the 256 possible virtual-key codes.

For more information, see Virtual-Key Codes

 

Remarks

 

Use GetWindowKeyState with vKey equal to -1 to reset keys flags

 

Function check if hWnd handle is the active window. If not, function will return %FALSE even if the requested key is pressed.

 

Restrictions

 

See also

 

Examples