检测同时按下两个键的情况

发布于 2024-11-10 15:23:29 字数 258 浏览 1 评论 0原文

我想在同时按下两个键时执行某些操作。

这对我不起作用。 不知道为什么。

if(GetAsyncKeyState(VK_F12) && GetAsyncKeyState(VK_F1))
{
  MessageBoxA(0, "Injection is working!", "Succes!", MB_ICONINFORMATION | MB_OK);
}

我想知道如何实现当我同时按下两个键时执行代码。

I want to do something when two keys are pressed at the same time.

This is not working for me.
Don't know why.

if(GetAsyncKeyState(VK_F12) && GetAsyncKeyState(VK_F1))
{
  MessageBoxA(0, "Injection is working!", "Succes!", MB_ICONINFORMATION | MB_OK);
}

I want to know how to achieve so that code is executed when I press two keys at the same time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

始终不够爱げ你 2024-11-17 15:23:29

您如何知道按下按键时您的代码正在被调用?

为了使您的代码在消息泵中被称为“in ether:

  • ”,在这种情况下处理 WM_KEYUPWM_KEYDOWN 事件,并检查按键是否同时“下”。
  • 在计时器线程中,不确定这里的最佳方法。

How do you know your code is getting called at the time the keys are getting pressed?

For your code to be getting called your in ether:

  • in the message pump, in which case handle the WM_KEYUP or WM_KEYDOWN events, and check if the keys are "down" at the same time.
  • in a timer thread, not sure the best way here.
ぇ气 2024-11-17 15:23:29

许多键盘无法检测同时按下的多个键。检查不同的组合。

Many keyboards are unable to detect multiple keys pressed at once. Check different combination.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文