I want to change tooltip text of CMenu item dynamically. The menu is loaded from resources (.rc).
CMenu menu;
menu.LoadMenu (IDR_REPORT_CONTROL);
//IDR_REPORT_CONTROLS consists of several menu items
//here I want to change tooltip text of certain menu item.
I tried functions ModifyMenu and SetMenuItemInfoA, but they can change only caption.
Is it possible to change menu item tooltip text without making changes in resources?