Re: Disable F10 for menu bar
- Posted by penpal0andrew Jun 29, 2009
- 1100 views
DerekParnell said...
penpal0andrew said...
Either this does not work ...
There is a bug. You can change one line in win32lib.ew to fix it.
Almost at the end of the routine fDoKeys(), locate this line
if isDown and isSys and not shifts and wParam = VK_F10 and vSkipF10 then
and change it to
if (isDown and isSys and not shifts) or (wParam = VK_F10 and vSkipF10) then
Thank you. Let me know when this change is in a release number for win32lib.ew.