vote up 1 vote down star
1

We have a scenario where we are exposing a set of WinForms UserControls via COM to a Legacy VB6 application. We have 3 different controls which have a MenuStrip on it that has the Control-F shortcut key mapped to a menu item which invokes a control specific find items dialog when the shortcut is entered. When we try testing this code in our WinForms shell the appropriate dialog (the one hosted in the active MdiChild) pops up when all 3 controls exist, but in the VB6 host the wrong dialog usually appears (it seems to always be the dialog for the first control which was created).

I'm fairly certain this has something to do with message pumps and all, but I can't seem to figure out how to ensure that the proper ToolStripMenuItem is getting invoked when we enter the shortcut key.

I know the option of using a global/singleton ShortcutKey manager/service that overrides ProcessCmdKey is a possibility, but that would be the last resort we want to fall back on. I just get a feeling that a message pump needs to be started.

Thanks.

flag

1 Answer

vote up 0 vote down

Yes, you diagnosed the problem correctly. This problem is induced by VB6 pumping the message loop instead of Windows Forms. All of the short-cut keystroke handling (accelerators, tabbing, changing focus with the arrow keys, accept/cancel keys) is done by the WF message loop after it obtained a Windows message with PeekMessage/GetMessage() and before it dispatches it with DispatchMessage().

At this time, the Control.PreProcessMessage() gets a first stab at the message. It runs virtual methods like ProcessCmdKey(), IsInputKey(), ProcessDialogKey(), IsInputChar(), ProcessDialogChar(), ProcessMnemnonic(). The VB6 message loop doesn't know anything about PreProcessMessage() so this keyboard handling doesn't get done.

Which means that you can't fix it by overriding ProcessCmdKey(). The common advice is to use ShowDialog() so that the WF message loop does the dispatching. Of course, that makes the window modal. A workaround for that is to display the form on its own thread so it won't be modal to the rest of the app. Check this MSDN article for the approach.

link|flag

Your Answer

Get an OpenID
or

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