GameClient.frmMain.Form KeyDown
From VbGORE Visual Basic Online RPG Engine
Contents |
Purpose
Relays KeyDown (triggered when a key is pressed down, along with while it is held down) events to the Input_Keys_Down sub.
Parameters
None
Special notes
KeyPress is the same as KeyDown, but KeyPress uses KeyAscii while KeyDown uses KeyCode. KeyDown is used more often since it supports the VB KeyCode constants, such as vbKeyLeft and vbKeyA.