How to Disabling F1 Help Key
Hi Friends,
Please help me to solve this problem. I am trying Hook all the keyboard events for my application by using SetWindowsHookEx for all WH_KEYBOARD events .
I am sucessfull with this by trapping all the keys except F1 key.
I need as following
When my application is Up ,if I am pressing F1 Key from IE , it should not show the Help Window. I have to disable this Help.
Any Help on this would be greatly appreciated
Thanks in Advance
Jomy K D
Re: How to Disabling F1 Help Key
Did you try with the WH_KEYBOARD_LL hook?
Cheers
Re: How to Disabling F1 Help Key
Thanks for your response
Sorry it won't work for this . I hope it is for the Alt, Ctl, Esc etc. (System Key combinations).
Please let me know if you have any other ideas
Thanks and Regards
Jomy K D
Re: How to Disabling F1 Help Key
Quote:
Originally Posted by jomykd
Thanks for your response
Sorry it won't work for this . I hope it is for the Alt, Ctl, Esc etc. (System Key combinations).
Please let me know if you have any other ideas
Thanks and Regards
Jomy K D
Using WH_KEYBOARD_LL should work I just tested it and it looks ok, you can intercept the VK_F1 before it is getting to IE.
Cheers
Re: How to Disabling F1 Help Key
Thanks
It is working with WH_KEYBOARD_LL
Thanks
Jomy K D
Re: How to Disabling F1 Help Key
You are welcome :wave:
Cheers
Re: How to Disabling F1 Help Key
Can I ask you why are you halting IE's Help feature ? :)