I am using a Logitech G110 keyboard and when a Libre office application have focus my multimedia sound volume keystroke don't works. Other multimedia sound like stop, play/pause,... works fine. Libre office applications don't need catch any multimedia event, Windows will manage it perfectly. I am using Windows Seven.
Can you please somehow find out the exact keycode of the key in question? We obviously do not have the keyboard to test ourselves :-(
(In reply to comment #1) > Can you please somehow find out the exact keycode of the key in question? We > obviously do not have the keyboard to test ourselves :-( Here is my test code : LRESULT CALLBACK FrameWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) { case WM_KEYDOWN: case WM_KEYUP: { int code = wParam; break; } } Resulting key codes (wParam values) : - volume up => 175 - volume down => 174 - play/pause => 179 - stop => 178 - previous track => 177 - next track => 176 - mute volume => 173 I find this later : http://msdn.microsoft.com/en-us/library/dd375731%28v=vs.85%29.aspx There is some defines like VK_VOLUME_UP And lParam isn't an interesting value in your case : http://msdn.microsoft.com/en-us/library/ms646281%28v=vs.85%29.aspx Good luck.
*** This bug has been marked as a duplicate of bug 32664 ***
Remove infoprovider from closed and resolved bugs.
RESOLVED, FIXED or CLOSED bugs cant be KEYWORD NEEDINFO.