In my implementation of IContextMenu COM server, the QueryContextMenu gets called (can see it with logging) but InvokeCommand doesn't. Here is the QueryContextMenu:

HRESULT ContexMenuImp::QueryContextMenu(HMENU hmenu,UINT indexMenu,UINT idCmdFirst,
    UINT idCmdLast,UINT uFlags)
{
    if (uFlags & CMF_DEFAULTONLY) {
        // shouldn't handle this situation:
        LOG("IContextMenu::QueryContextMenu:    (...,CMF_DEFAULTONLY)");
        return MAKE_HRESULT(SEVERITY_SUCCESS,FACILITY_NULL,0);
    }else if (InsertMenuItem(hmenu,indexMenu,TRUE,&globals.menuItemInfo) == FALSE){
        // error occurred:
        LOG("IContextMenu::QueryContextMenu:    Error: %d",GetLastError());
        return MAKE_HRESULT(SEVERITY_SUCCESS,FACILITY_NULL,0);
    } else{
        // the desired situation: add item to the menu:
        LOG("IContextMenu::QueryContextMenu(hMenu,indexMenu:%u,idCmdFirst:%u,idCmdLast:%u,0x%x):    All set...",
            indexMenu,idCmdFirst,idCmdLast,uFlags);
        return MAKE_HRESULT(SEVERITY_SUCCESS,FACILITY_NULL,1/*handle only a single item*/);
    }
}

Any idea why ?

link|improve this question

1  
No idea. What does your code look like? – David Heffernan Oct 10 '11 at 12:14
My psychic powers tell me that you returned S_OK instead of the required MAKE_HRESULT, or you added your menu items with the wrong ID. – Raymond Chen Oct 10 '11 at 13:07
@DavidHeffernan: added the code. – Tal Oct 10 '11 at 16:41
@RaymondChen: bad intuition here :-) would be glad for additional attempts. – Tal Oct 10 '11 at 16:41
feedback

1 Answer

up vote 3 down vote accepted

You forgot to honor the idCmdFirst when you inserted the menu.

globals.menuItemInfo.wID = idCmdFirst;
globals.menuItemInfo.fMask |= MIIM_ID;

(So I was right: You added your menu items with the wrong ID.)

Note that since each context menu may have a different ID, you should not use a global.

link|improve this answer
I missed that spot.. I hereby acknowledge your psychic skills ;-) – Tal Oct 10 '11 at 19:32
feedback

Your Answer

 
or
required, but never shown

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