在VB.NET中检测KeyUP?

时间:2014-03-07 14:28:00

标签: vb.net

我试图在发布特定密钥时检测,而不关注应用程序。

我使用GetAsyncKeyState,但它会在按下键时检测到键,而不是在释放键时。

1 个答案:

答案 0 :(得分:0)

If (GetAsyncKeyState(&H48) And &H8000) = 0 Then '0x48 is the "H" key which is up
    'your code
End If

代码为Virtual-Key Codes

瓦尔特