Code:
IDR_MYMENU MENU
BEGIN
    POPUP "&File"
    BEGIN
        MENUITEM "E&xit", ID_FILE_EXIT
    END

    POPUP "&Stuff"
    BEGIN
        MENUITEM "&Go", ID_STUFF_GO
        MENUITEM "G&o somewhere else", 0, GRAYED
    END
END
I have the menu above. I can disable each item in the popup based on the ID but I can't grayout the the main popup area. In this case the &File.
Is their a way to disable it, without knowing its ID?