vote up 1 vote down star

I'm trying to capture the F10 key in Delphi, but it seems to keep going to activating the menu because it gets converted from the vk_F10 to vk_menu or something.

flag
Is there a particular reason you want to disable standard Windows UI behavior? Just because you don't use F10 to activate the menu doesn't mean your customers won't. – Rob Kennedy Mar 16 at 18:32
Very important comment by Rob Kennedy - you should never use any of the standard Windows keyboard shortcuts (see msdn.microsoft.com/en-us/library/…) for a different command than the default, and F10 is among them. – mghie Mar 16 at 19:14
Unless, of course, it's not relevant. If you're writing a fullscreen app, for example, you most definitely do not want the user pulling up the Windows menu system. (Then again, you probably won't have menus in that case, but you understand the general idea...) – Mason Wheeler Mar 16 at 20:15
F10 is the application menu, not the Windows menu. I agree with Rob; overriding this makes your app less accessible to people with disabilities. – Craig Stuntz Mar 17 at 13:24
I said the Windows menu system, not the "Windows Menu". – Mason Wheeler Mar 18 at 22:41

2 Answers

vote up 5 vote down

The following OnKeyDown event added to my main form should work. Note you ned to set the key parameter to zero to prevent menu activation:

procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word;
  Shift: TShiftState);
begin
   if key = VK_F10 then begin
     Label1.Caption := 'You hit F10';
     key := 0;
   end;
end;
link|flag
Indeed. But to keep F10 from activating the menu the Key parameter should also be set to 0. – mghie Mar 16 at 16:08
Actually, it doesn't activate the menu for me as it stands. – Neil Butterworth Mar 16 at 16:10
it probably does activate the menu, but that will be lost by the showmessage changing focus. Try setting a label caption instead, and see if it does it then (with a menu present of course!) – mj2008 Mar 16 at 16:51
You're right - I'll alter my answer. – Neil Butterworth Mar 16 at 18:01
vote up 1 vote down

Hello Stephen,

If you're on Windows, here's some code to make a keyboard hook using the Windows API: http://www.delphitricks.com/source-code/windows/install_a_keyboard_hook.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.