Hii.. I have made a custom toolbar in IE. I would like to have keyboard shortcuts for the buttons of the same. Is it possible. Specifically I would like the toolbar options to be accessed by combination of keys like Ctrl+alt+A etc.

link|improve this question

79% accept rate
feedback

2 Answers

You need to implement the right interface. I'm not 100% sure off-hand what that is. It could be IInputObject. It could be one of the crazy OLE interfaces. You could set a breakpoint on your QueryInterface() implementation and see what it asks for.

link|improve this answer
The IInputObject works when we want to take user inputs in textboxes or the like, where our toolbar may get keyboard focus, which isn't the case here. – Sharad Nov 23 '10 at 14:17
feedback
up vote 0 down vote accepted

I finally found a solution using global keyboard hooks viz m_hhook = ::SetWindowsHookEx(WH_KEYBOARD, KeyboardProc, NULL, GetCurrentThreadId());

For more details visit the link http://www.ookii.org/post/ie_addon_development_globally_capturing_keyboard_input.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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