Simplified Hotkey Example
Shows how to emplement a hotkey globally. This example uses the ` key (192).
Original Author: Liquibit
API Declarations
'Add To Module
Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Code
'Add To A Timer With An Interval Of 1
keyresult = GetAsyncKeyState(192)
If keyresult = 0 Then Exit Sub
If keyresult = -32767 Then
MsgBox "The ` key was pressed."
End If
Loading Comments ...
Comments
No comments have been added for this post.
You must be logged in to make a comment.