I have a SDI project with Feature Pack enabled. The program has a Menu Bar (CMFCMenuBar) and four Tool Bars(CMFCToolBar).
Toolbars works correctly: I assigned to the TB's buttons the ID of equivalent menu items and I see TB images on menu voices.
Now, when I hover on some menu voices (always the same) I got some random tooltips text, I say random because I searched my project and I don't have those two strings written in any part of my solution, for example:
I have recently done some manual modification in resource.h file scrumbling some ids... that might be a problem?
Also, I tried to fix the problem by telling Menu to not show tooltips:
dwStile = m_wndMenuBar.GetPaneStyle() | CBRS_SIZE_DYNAMIC/* | CBRS_TOOLTIPS*/ | CBRS_FLYBY;
m_wndMenuBar.SetPaneStyle(dwStile);
but, as you can see in the images above, I got no results at all.
Any idea where I can look for the error?