<?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[Mehr als 64 Zeichen in Systray]]></title><description><![CDATA[<p>Wie kriege ich mehr als 64 Zeichen in die Quickinfo von Tray-Icons. Andere PRogramme schaffen das ja auch, also muss das ja irgendwie möglich sein.</p>
<p>Ich mache das bisher so hier:</p>
<pre><code class="language-cpp">ZeroMemory(&amp;tnd, sizeof (NOTIFYICONDATA));	
tnd.cbSize = sizeof (NOTIFYICONDATA);	// groesse der Struktur	
tnd.hWnd = this-&gt;m_hWnd;	// Handle von Dialog	
tnd.uID = 1;	
tnd.uFlags = NIF_MESSAGE|NIF_ICON|NIF_TIP;	
tnd.uCallbackMessage = MYWM_NOTIFYICON;	// Nachricht von Icon	
tnd.hIcon = (HICON)LoadImage(AfxGetApp()-&gt;m_hInstance, MAKEINTRESOURCE(IDR_MAINFRAME), IMAGE_ICON,16,16,LR_SHARED|LR_DEFAULTCOLOR);	// Popup-Text fuer Icon:	(max. 64 Zeichen)	
m_szTrayText=m_info;
lstrcpyn(tnd.szTip, m_szTrayText, sizeof(tnd.szTip));	// Icon erstellen und anzeigen:	
Shell_NotifyIcon(NIM_ADD, &amp;tnd);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/59547/mehr-als-64-zeichen-in-systray</link><generator>RSS for Node</generator><lastBuildDate>Wed, 03 Jun 2026 00:23:00 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/59547.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 24 Dec 2003 22:01:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Mehr als 64 Zeichen in Systray on Wed, 24 Dec 2003 22:01:42 GMT]]></title><description><![CDATA[<p>Wie kriege ich mehr als 64 Zeichen in die Quickinfo von Tray-Icons. Andere PRogramme schaffen das ja auch, also muss das ja irgendwie möglich sein.</p>
<p>Ich mache das bisher so hier:</p>
<pre><code class="language-cpp">ZeroMemory(&amp;tnd, sizeof (NOTIFYICONDATA));	
tnd.cbSize = sizeof (NOTIFYICONDATA);	// groesse der Struktur	
tnd.hWnd = this-&gt;m_hWnd;	// Handle von Dialog	
tnd.uID = 1;	
tnd.uFlags = NIF_MESSAGE|NIF_ICON|NIF_TIP;	
tnd.uCallbackMessage = MYWM_NOTIFYICON;	// Nachricht von Icon	
tnd.hIcon = (HICON)LoadImage(AfxGetApp()-&gt;m_hInstance, MAKEINTRESOURCE(IDR_MAINFRAME), IMAGE_ICON,16,16,LR_SHARED|LR_DEFAULTCOLOR);	// Popup-Text fuer Icon:	(max. 64 Zeichen)	
m_szTrayText=m_info;
lstrcpyn(tnd.szTip, m_szTrayText, sizeof(tnd.szTip));	// Icon erstellen und anzeigen:	
Shell_NotifyIcon(NIM_ADD, &amp;tnd);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/422735</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/422735</guid><dc:creator><![CDATA[BF_31]]></dc:creator><pubDate>Wed, 24 Dec 2003 22:01:42 GMT</pubDate></item><item><title><![CDATA[Reply to Mehr als 64 Zeichen in Systray on Wed, 24 Dec 2003 22:34:50 GMT]]></title><description><![CDATA[<p>For Version 5.0 and later, szTip can have a maximum of 128 characters, including the terminating NULL.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/422742</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/422742</guid><dc:creator><![CDATA[quote]]></dc:creator><pubDate>Wed, 24 Dec 2003 22:34:50 GMT</pubDate></item><item><title><![CDATA[Reply to Mehr als 64 Zeichen in Systray on Thu, 25 Dec 2003 01:45:47 GMT]]></title><description><![CDATA[<p>quote schrieb:</p>
<blockquote>
<p>For Version 5.0 and later, szTip can have a maximum of 128 characters, including the terminating NULL.</p>
</blockquote>
<p>Gehts auch unbegrenzt?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/422785</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/422785</guid><dc:creator><![CDATA[BF_31]]></dc:creator><pubDate>Thu, 25 Dec 2003 01:45:47 GMT</pubDate></item><item><title><![CDATA[Reply to Mehr als 64 Zeichen in Systray on Thu, 25 Dec 2003 02:56:02 GMT]]></title><description><![CDATA[<p>Vielleicht mit einem Hook?<br />
Also als TipText einen eindeutigen Namen nehmen, WM_CREATE hooken und den Namen dann in das Gewünschte ändern.<br />
Geht aber bestimmt auch viel einfacher. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/422795</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/422795</guid><dc:creator><![CDATA[Oliver]]></dc:creator><pubDate>Thu, 25 Dec 2003 02:56:02 GMT</pubDate></item><item><title><![CDATA[Reply to Mehr als 64 Zeichen in Systray on Thu, 25 Dec 2003 20:06:56 GMT]]></title><description><![CDATA[<p>Ich habe ehrlich gesagt keine Ahnung wie Hooks funktionieren <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /><br />
Wenn das nur so geht dann wärs nett wenn mir jemand einen kompletten Code gibt <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/423134</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/423134</guid><dc:creator><![CDATA[BF_31]]></dc:creator><pubDate>Thu, 25 Dec 2003 20:06:56 GMT</pubDate></item></channel></rss>