<?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[Ballon-Popups einblenden]]></title><description><![CDATA[<p>Wie kann ich solche Ballon-Popups im Systray (rechts unten bei der Uhr) einblenden lassen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/130799/ballon-popups-einblenden</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Jul 2026 23:48:14 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/130799.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 27 Dec 2005 15:48:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Ballon-Popups einblenden on Tue, 27 Dec 2005 15:48:50 GMT]]></title><description><![CDATA[<p>Wie kann ich solche Ballon-Popups im Systray (rechts unten bei der Uhr) einblenden lassen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/950863</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/950863</guid><dc:creator><![CDATA[winapi]]></dc:creator><pubDate>Tue, 27 Dec 2005 15:48:50 GMT</pubDate></item><item><title><![CDATA[Reply to Ballon-Popups einblenden on Tue, 27 Dec 2005 16:05:12 GMT]]></title><description><![CDATA[<p><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/tooltip/usingtooltips.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/tooltip/usingtooltips.asp</a><br />
<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/tooltip/tooltip.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/tooltip/tooltip.asp</a><br />
<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_int/shell_int_programming/taskbar.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_int/shell_int_programming/taskbar.asp</a></p>
<p>Grob gesagt:</p>
<pre><code class="language-cpp">hwndToolTips = CreateWindow(TOOLTIPS_CLASS,
                            NULL,
                            WS_POPUP | TTS_NOPREFIX | TTS_BALLOON,
                            0, 0,
                            0, 0,
                            NULL, NULL,
                            g_hinst,
                            NULL);
if (hwndTooltip)
{
// Do the standard ToolTip coding. 
    TOOLINFO ti;

    ti.cbSize = sizeof(ti);
    ti.uFlags = TTF_TRANSPARENT | TTF_CENTERTIP;
    ti.hwnd = hwnd;
    ti.uId = 0;
    ti.hinst = NULL;
    ti.lpszText = LPSTR_TEXTCALLBACK;

    GetClientRect(hwnd, &amp;ti.rect);
    SendMessage(hwndToolTips, TTM_ADDTOOL, 0, (LPARAM) &amp;ti );
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/950877</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/950877</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Tue, 27 Dec 2005 16:05:12 GMT</pubDate></item></channel></rss>