<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : How to dynamically update CXTPTooltipContext</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : How to dynamically update CXTPTooltipContext]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 10 Jun 2026 11:29:04 +0000</pubDate>
  <lastBuildDate>Wed, 28 Feb 2007 09:57:33 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=6525</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[How to dynamically update CXTPTooltipContext : Hi Oleg;  modifying source is...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20815&amp;title=how-to-dynamically-update-cxtptooltipcontext#20815</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 6525<br /><strong>Posted:</strong> 28 February 2007 at 9:57am<br /><br />Hi Oleg;<DIV>&nbsp;</DIV><DIV>modifying source is always very bad when updates come in mind.</DIV><DIV>Nevertheless I'll give your suggestions a try. Perhaps I have to write my own tooltip window class and forgo your classes.</DIV><DIV>&nbsp;</DIV><DIV>Perhaps you could put this issue on your internal feature request list?</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 28 Feb 2007 09:57:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20815&amp;title=how-to-dynamically-update-cxtptooltipcontext#20815</guid>
  </item> 
  <item>
   <title><![CDATA[How to dynamically update CXTPTooltipContext : Afraid only to modify sources....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20813&amp;title=how-to-dynamically-update-cxtptooltipcontext#20813</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6525<br /><strong>Posted:</strong> 28 February 2007 at 9:28am<br /><br />Afraid only to modify sources. <DIV>&nbsp;</DIV><DIV>see fow CXTPToolTipContextToolTip::SetVisibleTool method works.</DIV>]]>
   </description>
   <pubDate>Wed, 28 Feb 2007 09:28:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20813&amp;title=how-to-dynamically-update-cxtptooltipcontext#20813</guid>
  </item> 
  <item>
   <title><![CDATA[How to dynamically update CXTPTooltipContext : Hi Oleg,  thanks for your reply!...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20810&amp;title=how-to-dynamically-update-cxtptooltipcontext#20810</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 6525<br /><strong>Posted:</strong> 28 February 2007 at 7:41am<br /><br />Hi Oleg,<DIV>&nbsp;</DIV><DIV>thanks for your reply! But now, could you give me a hint, how I could resize the tip window to react on different text lengths?</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 28 Feb 2007 07:41:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20810&amp;title=how-to-dynamically-update-cxtptooltipcontext#20810</guid>
  </item> 
  <item>
   <title><![CDATA[How to dynamically update CXTPTooltipContext : Hi, You can try to override it,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20802&amp;title=how-to-dynamically-update-cxtptooltipcontext#20802</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6525<br /><strong>Posted:</strong> 28 February 2007 at 1:19am<br /><br /><P>Hi,</P><DIV>You can try to override it, and call</DIV><DIV>&nbsp;</DIV><DIV>ti.lpszText ==..;</DIV><DIV>m_pToolTip-&gt;SendMessage(TTM_UPDATETIPTEXT, 0, (LPARAM)&amp;ti);<BR>m_pToolTip-&gt;Invaidate(FALSE);</DIV><DIV>&nbsp;</DIV><DIV>but it will not resize tooltip to match new text.</DIV>]]>
   </description>
   <pubDate>Wed, 28 Feb 2007 01:19:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20802&amp;title=how-to-dynamically-update-cxtptooltipcontext#20802</guid>
  </item> 
  <item>
   <title><![CDATA[How to dynamically update CXTPTooltipContext : Hi;  I want to use CXTPTooltipContext...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20798&amp;title=how-to-dynamically-update-cxtptooltipcontext#20798</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 6525<br /><strong>Posted:</strong> 27 February 2007 at 6:27pm<br /><br />Hi; <DIV>I want to use CXTPTooltipContext to display tooltips in my own CWnd derived class. The window has&nbsp;content that&nbsp;is updated in OnTimer() functions while a tooltip is visible. The tooltip should reflect the changes made to the window.</DIV><DIV>I was looking for something like SetTooltipText() but could not find any function like that.</DIV><DIV>&nbsp;</DIV><DIV>So, does anyone know how to dynamically change the content of the tooltip while the tip window is visible?</DIV>]]>
   </description>
   <pubDate>Tue, 27 Feb 2007 18:27:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6525&amp;PID=20798&amp;title=how-to-dynamically-update-cxtptooltipcontext#20798</guid>
  </item> 
 </channel>
</rss>