KeyUp

<< Click to Display Table of Contents >>

 

KeyUp

KeyUp(KeyCode, Shift)

This event occurs when a key is released, regardless of the Screen focus.

Parameters of the KeyUp event

Name

Description

KeyCode

Integer identifying the ASCII character of the pressed key

Shift

Displays the shortcut key used with the pressed key. Possible values are 4: SHIFT key, 8: CTRL key, or 12: CTRL + SHIFT keys

 

The next script contains an example of using this event.

Sub Screen1_KeyUp(KeyCode, Shift)
  ' Displays a message box when a user
  ' releases a key
  MsgBox "Key code: " & KeyCode
End Sub

 

NOTE

For a list with all key codes available for the KeyCode parameter, please check the article Keys Enumeration on Microsoft Developer Network.

Was this page useful?