Is there a way to create dynamic menu items in the menu bar of an MFC applications created with visual studio 2008 style with menus not ribbon, I have plugins that add their menus dynamically how can I add them to that menu??? I see
//this is the menubar that i want to update
CMFCMenuBar m_wndMenuBar;
At first you have to create a new submenu. It can be filled by hand or loaded from resources. Then create a new menu button and attach submenu to it. After that update the menu bar. That's it.
P.S.
menu
may be local becauseCMFCToolBarMenuButton
constructor copy content from it.