<?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[[gelöst] Desktop-Auflösung ermitteln]]></title><description><![CDATA[<p>Hi,<br />
wie kann man denn mit WinAPI-Funktionen die aktuelle Auflösung des Desktops ermitteln (also Breite und Höhe)?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/154332/gelöst-desktop-auflösung-ermitteln</link><generator>RSS for Node</generator><lastBuildDate>Thu, 23 Jul 2026 13:35:51 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/154332.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 26 Jul 2006 12:03:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [gelöst] Desktop-Auflösung ermitteln on Wed, 26 Jul 2006 12:41:32 GMT]]></title><description><![CDATA[<p>Hi,<br />
wie kann man denn mit WinAPI-Funktionen die aktuelle Auflösung des Desktops ermitteln (also Breite und Höhe)?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1104535</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1104535</guid><dc:creator><![CDATA[cyclohexan]]></dc:creator><pubDate>Wed, 26 Jul 2006 12:41:32 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst] Desktop-Auflösung ermitteln on Wed, 26 Jul 2006 12:16:51 GMT]]></title><description><![CDATA[<p>verwend SystemParametersInfo():</p>
<pre><code class="language-cpp">RECT rect;
int width = 0;               //breite des desktops
int height = 0;              //höhe des desktops
SystemParametersInfo(SPI_GETWORKAREA, 0, &amp;rect, 0);

width = rect.right;
height = rect.bottom;
</code></pre>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1104546</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1104546</guid><dc:creator><![CDATA[kingofmovies]]></dc:creator><pubDate>Wed, 26 Jul 2006 12:16:51 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst] Desktop-Auflösung ermitteln on Wed, 26 Jul 2006 12:19:55 GMT]]></title><description><![CDATA[<p>guckst du <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-154092.html" rel="nofollow">mein Post</a></p>
<p>Greetz, Swordfish</p>
<p>[edit] sorry zu schnell überflogen, war für <em>alle unterstützten</em> Auflösungen. [/edit]</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1104550</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1104550</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Wed, 26 Jul 2006 12:19:55 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst] Desktop-Auflösung ermitteln on Wed, 26 Jul 2006 12:40:22 GMT]]></title><description><![CDATA[<p>Funktioniert, Danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1104572</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1104572</guid><dc:creator><![CDATA[cyclohexan]]></dc:creator><pubDate>Wed, 26 Jul 2006 12:40:22 GMT</pubDate></item></channel></rss>