PRB: Setting Menu Items to Grayed Does Not Disable the Item

Last reviewed: July 31, 1997
Article ID: Q143290
1.00 1.50 1.51 1.52 | 2.00 2.10 2.20 4.00
WINDOWS             | WINDOWS NT
kbprg kbprb

The information in this article applies to:

  • The Microsoft Foundation Classes (MFC) included with:

        - Microsoft Visual C++, 32-bit Edition, versions 2.0, 2.1, 2.2, 4.0
        - Microsoft Visual C++ for Windows, versions 1.0, 1.5, 1.51, 1.52
    

SYMPTOMS

If you create a popup menu item and select its Grayed property in AppStudio, the menu item will appear Grayed in AppStudio and the GRAYED attribute will appear in the .RC file, but the menu item may not appear Grayed (disabled) when you run the application. The same behavior may appear for menus with the Inactive property.

CAUSE

CFrameWnd has a member variable name m_bAutoMenuEnabled, which is described in the Class Library reference. The documentation states that this variable is set to TRUE by default, meaning that any menu item that has an ON_COMMAND handler but no corresponding ON_UPDATE_COMMAND_UI handler will be automatically enabled. This variable overrides any setting you may have selected in your resource file.

RESOLUTION

If you would like to change this behavior, either implement the ON_UPDATE_COMMAND_UI handler or set the value of m_bAutoMenuEnabled to FALSE in the derived CFrameWnd constructor.

STATUS

This behavior is by design.

REFERENCES

The Class Library Reference, documentation for ON_UPDATE_COMMAND_UI and CFrameWnd::m_bAutoMenuEnable.


Additional reference words: 1.00 1.50 2.50 2.51 2.52 2.00 2.10 2.20 3.00
3.10 3.20 4.00
KBCategory: kbprg kbprb
KBSubcategory: MfcUI
Keywords : MfcUI kbprb kbprg
Technology : kbMfc
Version : 1.00 1.50 1.51 1.52 | 2.00 2.10
Platform : NT WINDOWS


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: July 31, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.