Tooltip question
-
I'm using CTooltipCtrl to provide tooltips for buttons on an "always on top" modal dialog. This works fine while the dialog has the focus, but I'd also like the tooltips to pop up accordingly even if the dialog does not have the focus (MS Office Shortcut Bar does this). Any ideas how I can do it? Thanks in advance
-
I'm using CTooltipCtrl to provide tooltips for buttons on an "always on top" modal dialog. This works fine while the dialog has the focus, but I'd also like the tooltips to pop up accordingly even if the dialog does not have the focus (MS Office Shortcut Bar does this). Any ideas how I can do it? Thanks in advance
If I understand your question, what you want to do is specify the TTS_ALWAYSTIP style when you create the CToolTipCtrl. m_ToolTip.Create(this, TTS_ALWAYSTIP); srs
-
If I understand your question, what you want to do is specify the TTS_ALWAYSTIP style when you create the CToolTipCtrl. m_ToolTip.Create(this, TTS_ALWAYSTIP); srs
Doh - completely missed that one in the documentation! That works a treat - thanks for that. *Martyn slopes off to check that his contact lenses are in the right way round* ;)