I'm creating a dynamic popup menu without generating resource ids. How can I keep track of the clicked action without a resource id?

Is there any way I can get menu's string value?

CMenu m_subMenu;
m_subMenu.CreatePopupMenu();

utf16string actionName(L"");
int nCatgryId = 1000;

for( ; itr != itrEnd ; ++itr)
{
    actionName     = itr->first;
    CString csActionName = actionName.c_str();
    AppendMenu(MF_STRING,nId++, csActionName);
}

So how do I obtain the value from the menu when an action is clicked?

link|improve this question

53% accept rate
feedback

2 Answers

#define YOURMENU_ID  WM_APP+10
...
AppendMenu(.., YOURMENU_ID,...);

And handle it in WM_COMMAND

link|improve this answer
thanks ajay for the reply but i need to get the menu name when right clicked without making use of id – Pinky Jul 16 '11 at 13:31
Why GetMenuString won't work for you? – Ajay Jul 16 '11 at 13:33
getmenustring needs id to be passed – Pinky Jul 16 '11 at 13:34
You don't want any id, but you want information for a menu item? How's that possible? I didn't ask you to use resource, but a locally defined macro. – Ajay Jul 16 '11 at 13:36
im creating a dynamic menu so my id cant be defined as a macro – Pinky Jul 16 '11 at 13:42
show 2 more comments
feedback

Every menu item, when you create it, needs to have an ID. You need to reserve a list of ID's, use those to create the menu items, then use the normal menu functions to get information on them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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