I have an C++ MFC CMenu based context menu object that has several menu items and one menu item is a popup menu (ie has a sub menu). Populating the sub menu is a time intensive process so I don't want to actually populate it until the user clicks on it.

How do I detect the display of the sub menu so I can only populate it when the user clicks on it?

I'm using TrackPopupMenu to display the menu to the user.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

You want WM_INITMENUPOPUP.

link|improve this answer
Yep, that's it. Thanks. – snowdude Mar 9 '11 at 11:24
feedback

You can catch the WM_CONTEXTMENU message in the window. Then you can do whatever you like in response to that message.

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.