handle WN_NOTIFY from your toolbar with
lpToolText->hdr.code that equals to TTN_NEEDTEXT.
lpToolText you will egt like this:
lpToolText = (LPTOOLTIPTEXT)lParam;
now change the text:
lpToolText->lpszText = L"some message"
Also before set text you should check if the message you get is from your toolbar
if(lpToolText->hdr.idFrom == ID_YOUR_TOOLBAR)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.