Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
702 views

MFC : How to add tooltip in Cmenu items?

How do you add tooltips for CMenu Items? I couldn't find any straightforward and helpful resource. Please help. Thanks...
2
votes
1answer
179 views

MFC CMenu tooltip not being displayed

I tried using something like this to set the tool tip of a CMenu item (as described here) but it is just being displayed in a single line and the line break is not visible. // read control id UINT id ...
1
vote
2answers
91 views

What is the tag used for in Yii framework CMenu?

In the following codes, you see there is a tag new for the product/new route and a tag popular for the product/index route. I can't figure out what these tags are used for, and I can't see any ...
1
vote
2answers
3k views

How to add submenu to a CMenu in MFC?

I have an MFC app that uses CMenu for the main menu bar. I haven't been able to create submenus successfully. I can have the first level of File, Edit, View, etc and their sub menus, but I can't ...
0
votes
0answers
25 views

Menu Separator is not showing properly

i have one main "Menu" in my application. i have functionality to add customize the menu at run time (means user can add the customize items at run time). Adding new item in menu at run time is ...
0
votes
2answers
174 views

How to get string value from mfc popupmenu when clicked without making use of resource id

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; ...
0
votes
2answers
101 views

Delay population of a sub menu in Windows and C++

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 ...