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 = menu->GetMenuItemID(1235);
// modify caption and add tooltip?
menu->ModifyMenu( id, MF_BYCOMMAND, id, "Click here\nThis is the tooltip for the menu item ...");

I also tried to set the caption directly in the visual studio resource designer of the menu item with the same effect. Can you give me any hints on whats wrong? I am using VS2008 on windows 7.

Any help is appreciated!

link|improve this question
Trying setting the text in the menu properties, in the Visual Studio designer. I'm not 100% clear on the full context but it seems like this might be an MFC issue. – Jonathan Wood Jul 7 '11 at 12:46
Have you tried adding the MF_STRING bit too? E.g. menu->ModifyMenu( id, MF_BYCOMMAND | MF_STRING, id, "Click here\nThis is the tooltip for the menu item ..."); – Jonas Gulle Jul 7 '11 at 15:12
Thanks for your comments. @JonathanWood : I already tried that (see my original post) and it had the same effect. @JonasGulle : The MF_STRING bit also did not have any effect. – Norman Jul 8 '11 at 11:00
feedback

1 Answer

Perhaps you have not added the windows xp common controls to your application.

Try adding the common controls to your stdafx.h:

#ifdef UNICODE
#if defined _M_IX86
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_IA64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_X64
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#else
#pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#endif
#endif
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.