views:

94

answers:

2

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

A: 

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.

kaptnole
+5  A: 

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.

MSalters
D'oh! Can i modify the OS driver to do particulary things when is catchet the Fn+F11 key combo?
BlackShadow
Apparently I wasn't explicit enough - the OS driver is not involved. It doesn't catch the key combo.
MSalters