I found out that sometimes the text in my tooltip does not display completely. Here is an example for such text:
WWWWW WWWW, WW WWWWWWWW
WWWWWWWWWW WWWWWWWWWWWWWW WWWWWWWWW
Screenshot:

My tooltip creation code (WTL):
CToolTipCtrl tooltip; TOOLINFO toolInfo; tooltip.Create(window, NULL, NULL, TTS_NOFADE); toolInfo = CToolInfo(TTF_IDISHWND | TTF_TRACK | TTF_ABSOLUTE, tooltip, 0, NULL, L"WWW..."); tooltip.AddTool(&toolInfo); tooltip.SendMessage(TTM_SETTITLE, (WPARAM)hIcon, (LPARAM)L"Title");
Is this a known issue? Any help is appreciated. Thanks!
source share