FIX: Firing a KeyPress Event from an OLE Control Causes Beep

Last reviewed: September 19, 1997
Article ID: Q141273
4.00 WINDOWS NT kbprg kbbuglist kbfixlist kbdocerr kbcode

The information in this article applies to:

  • The Microsoft Foundation Classes (MFC) included with: Microsoft Visual C++, 32-bit Edition, version 4.0

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.

NOTE: The Grid OLE Control that ships with the product also displays this behavior.

CAUSE

If 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.

RESOLUTION

You 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:

UINT CKeyEventsCtrl::OnGetDlgCode() {

    // If you're firing KeyPress, prevent the container from
    // stealing WM_CHAR.
    return COleControl::OnGetDlgCode() | DLGC_WANTCHARS ;
}

STATUS

Microsoft 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 INFORMATION

When 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 reference words: 4.00 4.10
KBCategory: kbprg kbbuglist kbfixlist kbdocerr kbcode
KBSubcategory: MfcOLE vcbuglist400 vcfixlist410
Keywords : MfcOLE vcbuglist400 vcfixlist410 kbbuglist kbcode kbdocerr kbfixlist kbprg
Technology : kbMfc
Version : 4.00
Platform : NT WINDOWS
Solution Type : kbfix


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 19, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.