Simulate Fn+F11 key press

送分小仙女□ 提交于 2019-12-01 11:30:44

问题


Can you tell me how I can simulate key presses Fn + F11 on a laptop? Do I have to write a driver, or something like that?

The platform is Windows XP Pro SP3. Programming Language is C/C++. The purpose is create a program that allow to change enable/disable via GUI some hardware device that can turned off/on only with this hotkey. The IDE is Visual Studio 2010


回答1:


Won't work. The Fn-F11 key combo on laptops isn't handled by the OS; it's processed in Systems Management Mode - a BIOS feature, essentially.




回答2:


I recently had to simulate F5 press to cause a refresh in a web browser:

INPUT inp[2]= {0};
inp[0].type = INPUT_KEYBOARD;
inp[0].ki.wVk = VK_F5;
inp[1].type = INPUT_KEYBOARD;
inp[1].ki.wVk = VK_F5;
inp[1].ki.dwFlags = KEYEVENTF_KEYUP;

SendInput(2, inp, sizeof(INPUT));

To simulate the Fn + FX Key you might have to search for special codes.



来源:https://stackoverflow.com/questions/3684099/simulate-fnf11-key-press

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!