Hotkeys

darknuke

Well-known member
Joined
Oct 3, 2003
Messages
68
Im creating a text editor, and want to add some hotkeys, but Im not quite sure what the f1-12 keys are mapped as. Does anybody know?
 
Nevermind, got it. For anyone else who needs this, 112 - 124 are the F1-F12 keys.

Code:
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Integer) As Short
 
Back
Top