<?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[Problem mit Sprechblase]]></title><description><![CDATA[<p>Hallo,</p>
<p>Ich habe ein Problem mit den Sprechblasen.</p>
<p>Ich will meinem TrayIcon eine Sprechblase verpassen.</p>
<p>Hab mit der MSDN schon folgeden Code herausbekommen.</p>
<pre><code class="language-cpp">typedef struct _tagEDITBALLOONTIP
{
    DWORD   cbStruct;
    LPCWSTR pszTitle;
    LPCWSTR pszText;
    INT     ttiIcon; // From TTI_*
} EDITBALLOONTIP, *PEDITBALLOONTIP;

#define ECM_FIRST               0x1500
#define    EM_SHOWBALLOONTIP   (ECM_FIRST + 3)
</code></pre>
<p>Und zum Aufrufen:</p>
<pre><code class="language-cpp">void __fastcall TForm1::Button1Click(TObject *Sender)
{

EDITBALLOONTIP ebt;
 ebt.cbStruct = sizeof(ebt);
 ebt.pszText = L&quot;Keine Verbindung zum Server&quot;;
 ebt.pszTitle = L&quot;Fehler&quot;;
 ebt.ttiIcon = TTI_INFO;
SendMessage(TrayIcon1-&gt;Handle,EM_SHOWBALLOONTIP,0,(LPARAM) &amp;ebt);

}
</code></pre>
<p>ich bekomme keinen Fehler beim Kompilieren, aber der Sprechblase wird mir auch nicht angezeigt, wenn ich auf den Button drücke.</p>
<p>Sieht zufällig jemand wo der Fehler liegt?</p>
<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/113739/problem-mit-sprechblase</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Jul 2026 13:56:05 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/113739.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 26 Jun 2005 14:01:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Problem mit Sprechblase on Sun, 26 Jun 2005 14:01:59 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Ich habe ein Problem mit den Sprechblasen.</p>
<p>Ich will meinem TrayIcon eine Sprechblase verpassen.</p>
<p>Hab mit der MSDN schon folgeden Code herausbekommen.</p>
<pre><code class="language-cpp">typedef struct _tagEDITBALLOONTIP
{
    DWORD   cbStruct;
    LPCWSTR pszTitle;
    LPCWSTR pszText;
    INT     ttiIcon; // From TTI_*
} EDITBALLOONTIP, *PEDITBALLOONTIP;

#define ECM_FIRST               0x1500
#define    EM_SHOWBALLOONTIP   (ECM_FIRST + 3)
</code></pre>
<p>Und zum Aufrufen:</p>
<pre><code class="language-cpp">void __fastcall TForm1::Button1Click(TObject *Sender)
{

EDITBALLOONTIP ebt;
 ebt.cbStruct = sizeof(ebt);
 ebt.pszText = L&quot;Keine Verbindung zum Server&quot;;
 ebt.pszTitle = L&quot;Fehler&quot;;
 ebt.ttiIcon = TTI_INFO;
SendMessage(TrayIcon1-&gt;Handle,EM_SHOWBALLOONTIP,0,(LPARAM) &amp;ebt);

}
</code></pre>
<p>ich bekomme keinen Fehler beim Kompilieren, aber der Sprechblase wird mir auch nicht angezeigt, wenn ich auf den Button drücke.</p>
<p>Sieht zufällig jemand wo der Fehler liegt?</p>
<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/817528</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/817528</guid><dc:creator><![CDATA[? ? ?]]></dc:creator><pubDate>Sun, 26 Jun 2005 14:01:59 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Sprechblase on Sun, 26 Jun 2005 17:14:32 GMT]]></title><description><![CDATA[<p>Hast du evtl. mal mit XP AntiSpy die Balloon-Tipps abgeschaltet?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/817614</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/817614</guid><dc:creator><![CDATA[Windoof]]></dc:creator><pubDate>Sun, 26 Jun 2005 17:14:32 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Sprechblase on Sun, 26 Jun 2005 17:36:05 GMT]]></title><description><![CDATA[<p>Ne, daran kann es nicht liegen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/817638</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/817638</guid><dc:creator><![CDATA[unregistrierter]]></dc:creator><pubDate>Sun, 26 Jun 2005 17:36:05 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Sprechblase on Sun, 26 Jun 2005 17:40:35 GMT]]></title><description><![CDATA[<p>Also, XP Antispy ist nicht Installiert. Der DemoCode aus der MSDN läuft auch. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/817644</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/817644</guid><dc:creator><![CDATA[? ? ?]]></dc:creator><pubDate>Sun, 26 Jun 2005 17:40:35 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Sprechblase on Tue, 28 Jun 2005 12:44:05 GMT]]></title><description><![CDATA[<blockquote>
<p>Note To use this API, you must provide a manifest specifying Comclt32.dll version 6.0</p>
</blockquote>
]]></description><link>https://www.c-plusplus.net/forum/post/818971</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/818971</guid><dc:creator><![CDATA[ink3n]]></dc:creator><pubDate>Tue, 28 Jun 2005 12:44:05 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit Sprechblase on Tue, 28 Jun 2005 16:03:32 GMT]]></title><description><![CDATA[<p>ausserdem ist das die falsche api für dein problem.</p>
<p>siehe <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-113829.html" rel="nofollow">hier</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/819149</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/819149</guid><dc:creator><![CDATA[Sunday]]></dc:creator><pubDate>Tue, 28 Jun 2005 16:03:32 GMT</pubDate></item></channel></rss>