<?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 : Tooltip problem in floating pane</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Tooltip problem in floating pane]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 23:00:57 +0000</pubDate>
  <lastBuildDate>Sun, 24 Dec 2006 09:23:35 +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=5903</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[Tooltip problem in floating pane : Common solution for this tooltip...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5903&amp;PID=18590&amp;title=tooltip-problem-in-floating-pane#18590</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 5903<br /><strong>Posted:</strong> 24 December 2006 at 9:23am<br /><br />Common solution for this tooltip problem is:<DIV>&nbsp;</DIV><DIV><FONT size=1><P>BOOL CMasterDialog::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult)</P><P>{</P><P>NMHDR* pNMHDR = (NMHDR*)lParam;</P><P></FONT><FONT color=#0000ff size=1>switch</FONT><FONT size=1> (pNMHDR-&gt;code)</P><P>{</P><P></FONT><FONT color=#0000ff size=1>case</FONT><FONT size=1> TTN_SHOW:</P><P>{</P><P></FONT><FONT color=#0000ff size=1>if</FONT><FONT size=1> (m_TT.GetSafeHwnd())</P><P>{</P><P></FONT><FONT color=#008000 size=1>// make sure the tooltip is at the top of the "Z" order, otherwise</P></FONT><FONT size=1><P></FONT><FONT color=#008000 size=1>// it will appear behind popup windows....</P></FONT><FONT size=1><P>::SetWindowPos(m_TT, HWND_TOP, 0, 0, 0, 0,</P><P>SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);</P><P>}</P><P>}</P><P></FONT><FONT color=#0000ff size=1>break</FONT><FONT size=1>;</P><P>}</P><P></FONT><FONT color=#0000ff size=1>return</FONT><FONT size=1> CDialog::OnNotify(wParam, lParam, pResult);</P><P>}</P></FONT></DIV>]]>
   </description>
   <pubDate>Sun, 24 Dec 2006 09:23:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5903&amp;PID=18590&amp;title=tooltip-problem-in-floating-pane#18590</guid>
  </item> 
  <item>
   <title><![CDATA[Tooltip problem in floating pane : Hi, If you haven&amp;#039;t set the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5903&amp;PID=18588&amp;title=tooltip-problem-in-floating-pane#18588</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=109">mgampi</a><br /><strong>Subject:</strong> 5903<br /><strong>Posted:</strong> 24 December 2006 at 8:07am<br /><br /><P>Hi,</P><P>If you haven't set the WS_EX_TOPMOST style of the tooltip this could occure.<BR>Another solution - in the TTN_SHOW handler (OnNotify) bring the tooltip to from by calling</P><FONT size=2><P></FONT><FONT color=#008000 size=2>// make sure the tooltip is at the top of the "Z" order, otherwise </P><DIV></FONT><FONT color=#008000 size=2>// it will appear behind any popup windows....</FONT></DIV><DIV><FONT size=2>::SetWindowPos(hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);</DIV><DIV>&nbsp;</DIV><DIV>I hope this helps </DIV></FONT>]]>
   </description>
   <pubDate>Sun, 24 Dec 2006 08:07:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5903&amp;PID=18588&amp;title=tooltip-problem-in-floating-pane#18588</guid>
  </item> 
  <item>
   <title><![CDATA[Tooltip problem in floating pane : Hi, I have a dockable pane which...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5903&amp;PID=18586&amp;title=tooltip-problem-in-floating-pane#18586</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=389">yoavo</a><br /><strong>Subject:</strong> 5903<br /><strong>Posted:</strong> 24 December 2006 at 4:53am<br /><br />Hi,<DIV>I have a dockable pane which a dialog box attach to it. The dialog contains a button which has a tooltip. The problem is that when the pane is floating, the tooltip appears behind the pane.</DIV><DIV>I attached a small sample to demonstrate the problem (Float the left pane and see the behaviour of the tooltips).</DIV><DIV>&nbsp;</DIV><DIV>Yoav.<a href="http://forum.codejock.com/uploads/20061224_045258_ThemeTest.zip" target="_blank">uploads/20061224_045258_ThemeTest.zip</A></DIV>]]>
   </description>
   <pubDate>Sun, 24 Dec 2006 04:53:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5903&amp;PID=18586&amp;title=tooltip-problem-in-floating-pane#18586</guid>
  </item> 
 </channel>
</rss>