Search
FlowChart.KeyUp Event
See Also
 



Raised when the user releases a key.

 Syntax

VB6  Copy Code

Public Event KeyUp

 Event Data

Parameter

Type

Description

keyCode

[input] long

The virtual key code.

shift

[input] long

The state of the modifier keys - SHIFT, CTRL, ALT.

Dispatch ID: 67

 Remarks

Raised when the user releases a key. The event corresponds to the WM_KEYUP windows message, and is actually triggered by it. The second parameter is a bit-mask exposing the state of SHIFT, CTRL and ALT keys, through the first, second and third bit respectively.

 See Also