<?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 : CXTPControlPopup OnMouseHover</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : CXTPControlPopup OnMouseHover]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 22 Apr 2026 06:45:49 +0000</pubDate>
  <lastBuildDate>Thu, 12 Feb 2009 07:24:00 +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=13388</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[CXTPControlPopup OnMouseHover : yea, thanx! Thats it... Now it...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13388&amp;PID=45374&amp;title=cxtpcontrolpopup-onmousehover#45374</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3807">lion</a><br /><strong>Subject:</strong> 13388<br /><strong>Posted:</strong> 12 February 2009 at 7:24am<br /><br />yea, thanx! Thats it... Now it works fine.]]>
   </description>
   <pubDate>Thu, 12 Feb 2009 07:24:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13388&amp;PID=45374&amp;title=cxtpcontrolpopup-onmousehover#45374</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlPopup OnMouseHover : Hi,  don&amp;#039;t change OnMouseHover...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13388&amp;PID=45364&amp;title=cxtpcontrolpopup-onmousehover#45364</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 13388<br /><strong>Posted:</strong> 12 February 2009 at 4:51am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>don't change OnMouseHover - Override&nbsp; GetTooltip and return your dynamic tip.</DIV>]]>
   </description>
   <pubDate>Thu, 12 Feb 2009 04:51:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13388&amp;PID=45364&amp;title=cxtpcontrolpopup-onmousehover#45364</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlPopup OnMouseHover :  ok, i found a way: overriding...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13388&amp;PID=45336&amp;title=cxtpcontrolpopup-onmousehover#45336</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3807">lion</a><br /><strong>Subject:</strong> 13388<br /><strong>Posted:</strong> 11 February 2009 at 9:21am<br /><br />ok, i found a way: overriding "<b>CXTPControlPopup* CXTPControlPopup::CreateControlPopup( XTPControlType controlType )</b>"did it now...<br><br><b>but:</b><br>how do I make the nee tooltip onMouseHover() appear right away?<br>I implemented:<br><br>void CXTPControlPopupUndo::OnMouseHover() {<br>&nbsp;&nbsp;&nbsp; this-&gt;SetTooltip( GetMyDynString() );<br>}<br><br>but the string only appears once I leaf the control and hover over it again... that is: the tooltip is always the one before...<br>what function do i need to call to make my string visible as a tooltip immediately ?<br><br>Thanx for some help<br>Cheers Björn<br>]]>
   </description>
   <pubDate>Wed, 11 Feb 2009 09:21:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13388&amp;PID=45336&amp;title=cxtpcontrolpopup-onmousehover#45336</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPControlPopup OnMouseHover :  Hi,all I want is handle the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13388&amp;PID=45334&amp;title=cxtpcontrolpopup-onmousehover#45334</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3807">lion</a><br /><strong>Subject:</strong> 13388<br /><strong>Posted:</strong> 11 February 2009 at 6:19am<br /><br />Hi,<br><br>all I want is handle the onMouseHover Event for a CXTPControlPopup.<br><br>CXTPControlPopup* pCtrlPopup = CXTPControlPopup::CreateControlPopup(xtpControlSplitButtonPopup);<br><br>1. I don't know how to catch that event in my mainframe.<br><br>2. Another way of doing it: I tried to inherit from CXTPControlPopup<b> -&gt; My</b>ControlPopup<br>MyControlPopup* pMyCtrlPopup = (MyControlPopup*)MyControlPopup::CreateControlPopup(xtpControlSplitButtonPopup);<br>but then the OnMouseHover Eventhandler is not called, or<br><br>3. I can not set the controltype to "xtpControlSplitButtonPopup", when using<br>MyControlPopup* pMyCtrlPopup = new MyControlPopup();<br><br>what would be the best/easiest way, to catch the OnMouseHover event for the CXTPControlPopup-xtpControlSplitButtonPopup, in order so set a dynamic tooltip ?<br><br>Thanx in advance<br>Cheers Bjoern<br><br>]]>
   </description>
   <pubDate>Wed, 11 Feb 2009 06:19:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13388&amp;PID=45334&amp;title=cxtpcontrolpopup-onmousehover#45334</guid>
  </item> 
 </channel>
</rss>