Re: Disable F10 for menu bar
- Posted by DerekParnell (admin) Jun 29, 2009
- 1119 views
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