<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[ToolTip geht gar nicht !]]></title><description><![CDATA[<p>hallo,<br />
hab im MSDN 2 Stunde gelesen, geht es immer noch nicht.<br />
&quot;The following example demonstrates how to create a standard ToolTip control for a window's entire client area. &quot;</p>
<pre><code>TOOLINFO ti = { 0 };

       case WM_CREATE :
icctrl.dwSize = sizeof(INITCOMMONCONTROLSEX);
icctrl.dwICC = ICC_TAB_CLASSES ;
InitCommonControlsEx(&amp;icctrl);

    ti.cbSize = sizeof(TOOLINFO);
    ti.uFlags = TTF_SUBCLASS;
    ti.hwnd = hwnd;
    ti.hinst = hInstance;
    ti.lpszText = TEXT(&quot;This is your ToolTip string.&quot;);;

     hTip = CreateWindowEx(NULL,
        TOOLTIPS_CLASS, NULL,
        WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,		
        0, 0,
        23, 23,
        hwnd, NULL, hInstance,NULL);

    SetWindowPos( hTip, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE ); 
    SendMessage(hTip, TTM_ADDTOOL, 0, (LPARAM) (LPTOOLINFO) &amp;ti);
</code></pre>
<p>wie kann ich weiter gehen? mit WM_MOUSEMOVE? bitte helfe! vielen Dank!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/230139/tooltip-geht-gar-nicht</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Apr 2026 01:04:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/230139.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 21 Dec 2008 14:15:29 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ToolTip geht gar nicht ! on Sun, 21 Dec 2008 14:15:29 GMT]]></title><description><![CDATA[<p>hallo,<br />
hab im MSDN 2 Stunde gelesen, geht es immer noch nicht.<br />
&quot;The following example demonstrates how to create a standard ToolTip control for a window's entire client area. &quot;</p>
<pre><code>TOOLINFO ti = { 0 };

       case WM_CREATE :
icctrl.dwSize = sizeof(INITCOMMONCONTROLSEX);
icctrl.dwICC = ICC_TAB_CLASSES ;
InitCommonControlsEx(&amp;icctrl);

    ti.cbSize = sizeof(TOOLINFO);
    ti.uFlags = TTF_SUBCLASS;
    ti.hwnd = hwnd;
    ti.hinst = hInstance;
    ti.lpszText = TEXT(&quot;This is your ToolTip string.&quot;);;

     hTip = CreateWindowEx(NULL,
        TOOLTIPS_CLASS, NULL,
        WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,		
        0, 0,
        23, 23,
        hwnd, NULL, hInstance,NULL);

    SetWindowPos( hTip, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE ); 
    SendMessage(hTip, TTM_ADDTOOL, 0, (LPARAM) (LPTOOLINFO) &amp;ti);
</code></pre>
<p>wie kann ich weiter gehen? mit WM_MOUSEMOVE? bitte helfe! vielen Dank!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1633584</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1633584</guid><dc:creator><![CDATA[damo]]></dc:creator><pubDate>Sun, 21 Dec 2008 14:15:29 GMT</pubDate></item><item><title><![CDATA[Reply to ToolTip geht gar nicht ! on Sun, 21 Dec 2008 16:03:49 GMT]]></title><description><![CDATA[<p>Was geht denn genau nicht? Wird der ToolTip überhaupt nicht angezeigt? Was meinst du mit weiter gehen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1633645</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1633645</guid><dc:creator><![CDATA[devkid]]></dc:creator><pubDate>Sun, 21 Dec 2008 16:03:49 GMT</pubDate></item><item><title><![CDATA[Reply to ToolTip geht gar nicht ! on Sun, 21 Dec 2008 17:06:27 GMT]]></title><description><![CDATA[<p>ja, richtig, der ToolTip wird überhaupt nicht angezeigt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1633673</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1633673</guid><dc:creator><![CDATA[damo]]></dc:creator><pubDate>Sun, 21 Dec 2008 17:06:27 GMT</pubDate></item><item><title><![CDATA[Reply to ToolTip geht gar nicht ! on Sun, 21 Dec 2008 18:26:54 GMT]]></title><description><![CDATA[<p>Wie wäre es mal mit einem bischen Literatur...<br />
<a href="http://msdn.microsoft.com/en-us/library/bb760252(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb760252(VS.85).aspx</a></p>
<p>Du hast TTF_SUBCLASS nicht eingesetzt!<br />
Du hast TTM_RELAYEVENT nicht eingesetzt soweit ich es sehe.<br />
<a href="http://msdn.microsoft.com/en-us/library/bb760403(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb760403(VS.85).aspx</a></p>
<p>HWND_TOPMOST für ein Tooltip zu setzen ist Unfug und unnötig.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1633710</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1633710</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Sun, 21 Dec 2008 18:26:54 GMT</pubDate></item><item><title><![CDATA[Reply to ToolTip geht gar nicht ! on Sun, 21 Dec 2008 18:37:23 GMT]]></title><description><![CDATA[<p>bingo !!!!!!!!!!!!!<br />
wegen:<br />
#if defined _M_IX86<br />
#pragma comment(linker,&quot;/manifestdependency:\&quot;type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='<em>'\&quot;&quot;)<br />
#elif defined _M_IA64<br />
#pragma comment(linker,&quot;/manifestdependency:\&quot;type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='</em>'\&quot;&quot;)<br />
#elif defined _M_X64<br />
#pragma comment(linker,&quot;/manifestdependency:\&quot;type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='<em>'\&quot;&quot;)<br />
#else<br />
#pragma comment(linker,&quot;/manifestdependency:\&quot;type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='</em>' publicKeyToken='6595b64144ccf1df' language='*'\&quot;&quot;)<br />
#endif</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/35992">@Martin</a> Richter: merry christmas!<br />
Mit der obigen Dinge, wie sieht es aus, dass mein Code in anderem Computer läuft? kannst du mir mal sagen, wie ich ohne diese zu tippen, aber meine VS2008 etwas einstellen kann? dank sehr.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1633717</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1633717</guid><dc:creator><![CDATA[damo]]></dc:creator><pubDate>Sun, 21 Dec 2008 18:37:23 GMT</pubDate></item><item><title><![CDATA[Reply to ToolTip geht gar nicht ! on Sun, 21 Dec 2008 19:05:44 GMT]]></title><description><![CDATA[<p>ok, erledigt!<br />
ohne die #if defined _M_IX86 ... zu tippen, braucht man rt_manifest .</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1633740</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1633740</guid><dc:creator><![CDATA[damo]]></dc:creator><pubDate>Sun, 21 Dec 2008 19:05:44 GMT</pubDate></item></channel></rss>