The information in this article applies to:
SYMPTOMS
While adding a KeyPress event to an OLE Control placed in an MFC-based OLE
Control Container that handles the event, you will notice a beep for each
key pressed that is not a mnemonic. CAUSEIf an OLE control is going to fire a KeyPress event, then when WM_GETDLGCODE is handled, it will need to specify DLGC_WANTCHARS as part of its return mask. In Visual C++ 4.0 and earlier, this is not being done and therefore the control never has an opportunity to process the WM_CHAR message that would normally fire the KeyPress event. RESOLUTIONYou need to handle WM_GETDLGCODE in your COleControl-derived class to inform the container that the control will handle WM_CHAR messages. For example, use this code:
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug was corrected in Visual C++ 4.1. MORE INFORMATIONWhen developing OLE Controls, you may want the OLE control to fire a KeyPress event to the OLE control container. Usually, you would do this with ClassWizard by clicking the OLE Events tab and adding an event. With the KeyPress event, however, this is insufficient because the control is never given an opportunity to handle the WM_CHAR message, so it can't fire the KeyPress event. Additional query words: kbVC400bug 4.00 4.10
Keywords : kbcode kbole kbMFC kbVC kbVC410fix |
Last Reviewed: July 22, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |