<?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[Icon größe Notify Icon]]></title><description><![CDATA[<p>Hallo<br />
ich habe ein notify Icon erstellt doch wenn ich versuche mein eigenes Icon als Bild zu nehmen kommt nur ein Platzhalter... Kann es sein, dass das daran liegt, dass mein Icon nicht die richtige Größe ist? Oder woran könnte es sonst liegen?</p>
<p>Resourcen Datei:</p>
<pre><code>#include &lt;windows.h&gt;
#include &quot;resource.h&quot;
IDM_ICON                ICON            &quot;s00812.ico&quot;
</code></pre>
<p>Resourcen.h:</p>
<pre><code>#define IDM_ICON                  222
</code></pre>
<p>.cpp:</p>
<pre><code class="language-cpp">nidTrayIcon.hIcon = LoadIcon(0,MAKEINTRESOURCE(IDM_ICON));
</code></pre>
<p>MFG Tim</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/233733/icon-größe-notify-icon</link><generator>RSS for Node</generator><lastBuildDate>Wed, 08 Apr 2026 20:45:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/233733.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 08 Feb 2009 15:03:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Icon größe Notify Icon on Sun, 08 Feb 2009 15:04:44 GMT]]></title><description><![CDATA[<p>Hallo<br />
ich habe ein notify Icon erstellt doch wenn ich versuche mein eigenes Icon als Bild zu nehmen kommt nur ein Platzhalter... Kann es sein, dass das daran liegt, dass mein Icon nicht die richtige Größe ist? Oder woran könnte es sonst liegen?</p>
<p>Resourcen Datei:</p>
<pre><code>#include &lt;windows.h&gt;
#include &quot;resource.h&quot;
IDM_ICON                ICON            &quot;s00812.ico&quot;
</code></pre>
<p>Resourcen.h:</p>
<pre><code>#define IDM_ICON                  222
</code></pre>
<p>.cpp:</p>
<pre><code class="language-cpp">nidTrayIcon.hIcon = LoadIcon(0,MAKEINTRESOURCE(IDM_ICON));
</code></pre>
<p>MFG Tim</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1659998</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1659998</guid><dc:creator><![CDATA[char_Tim*4**]]></dc:creator><pubDate>Sun, 08 Feb 2009 15:04:44 GMT</pubDate></item><item><title><![CDATA[Reply to Icon größe Notify Icon on Sun, 08 Feb 2009 16:41:08 GMT]]></title><description><![CDATA[<p>Ein Icon kann mehrere Auflösungen beherbergen. Hast Du das berücksichtigt?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1660058</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1660058</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Sun, 08 Feb 2009 16:41:08 GMT</pubDate></item><item><title><![CDATA[Reply to Icon größe Notify Icon on Sun, 08 Feb 2009 17:12:23 GMT]]></title><description><![CDATA[<p>Ja es ist ein Icon, dass mehrere Auflösungen hatt.<br />
256 x 256 (16.8mil colors)<br />
48 x 48 (16.8mil colors)<br />
32 x 32 (16.8mil colors)<br />
16 x 16 (16.8mil colors)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1660061</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1660061</guid><dc:creator><![CDATA[char_Tim*4**]]></dc:creator><pubDate>Sun, 08 Feb 2009 17:12:23 GMT</pubDate></item><item><title><![CDATA[Reply to Icon größe Notify Icon on Sun, 08 Feb 2009 23:04:40 GMT]]></title><description><![CDATA[<p>Du hast hinstance vergessen. LoadIcon(0, ?) wird suchen in Dateien oder in system resources.</p>
<pre><code class="language-cpp">nidTrayIcon.hIcon = LoadIcon(hinstance, MAKEINTRESOURCE(IDM_ICON));
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1660246</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1660246</guid><dc:creator><![CDATA[sapero]]></dc:creator><pubDate>Sun, 08 Feb 2009 23:04:40 GMT</pubDate></item><item><title><![CDATA[Reply to Icon größe Notify Icon on Mon, 09 Feb 2009 06:55:48 GMT]]></title><description><![CDATA[<p>1. LoadIcon wird nur die 32x32 Version laden.<br />
<a href="http://blog.m-ri.de/index.php/2008/03/15/loadicon-macht-es-nicht-richtig/" rel="nofollow">http://blog.m-ri.de/index.php/2008/03/15/loadicon-macht-es-nicht-richtig/</a><br />
2, Und das korrekte Bild liegt auch wirklich in allen Formaten?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1660302</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1660302</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Mon, 09 Feb 2009 06:55:48 GMT</pubDate></item><item><title><![CDATA[Reply to Icon größe Notify Icon on Mon, 09 Feb 2009 15:17:12 GMT]]></title><description><![CDATA[<p>Jo es lag an hInstance.<br />
Vielen Dank</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1660539</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1660539</guid><dc:creator><![CDATA[char_Tim*4**]]></dc:creator><pubDate>Mon, 09 Feb 2009 15:17:12 GMT</pubDate></item></channel></rss>