Bubble Tool Tips
-
Anyone know how to create those bubble-style tool tips? standard tool tips derived from CToolTipCtrl are such a boaring rectangle.
Mel wrote: Anyone know how to create those bubble-style tool tips? standard tool tips derived from CToolTipCtrl are such a boaring rectangle. Have you looked here on CP? Neville Franks, Author of ED for Windows. www.getsoft.com Make money with our new Affilate program
-
Mel wrote: Anyone know how to create those bubble-style tool tips? standard tool tips derived from CToolTipCtrl are such a boaring rectangle. Have you looked here on CP? Neville Franks, Author of ED for Windows. www.getsoft.com Make money with our new Affilate program
Yes, but I just now found something that will probably work: "Balloon Help as a non-modal replacement for MessageBox() By Shog9":)
-
Anyone know how to create those bubble-style tool tips? standard tool tips derived from CToolTipCtrl are such a boaring rectangle.
You must add the TTS_BALLOON style to your CToolTipCtrl object.
m_pToolTip.Create(this, TTS_BALLOON);
May be you need to define this style
#ifndef TTS_BALLOON
#define TTS_BALLOON 64
#endifOr you can look my class CPPTooltip :-D Best regards, Eugene Pustovoyt
-
You must add the TTS_BALLOON style to your CToolTipCtrl object.
m_pToolTip.Create(this, TTS_BALLOON);
May be you need to define this style
#ifndef TTS_BALLOON
#define TTS_BALLOON 64
#endifOr you can look my class CPPTooltip :-D Best regards, Eugene Pustovoyt
Thanks for your suggestion --exactly what I wanted.:)