<?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[Desktop auflösung ändern]]></title><description><![CDATA[<p>Mein C++ Programm wird im Fullscreen Ausgeführt. Ich habe das Programm mit der Auflösung 1024x768 erstellt. Mein Problem ist jetzt das wenn die Desktop Auflösung größer ist ich dann rechts und unten einen leeren Bereich habe, was ja auch soweit klar ist da ja das Programm mit der Auflösung 1024x768 erstellt wurde bzw. für diese Auflösung gedacht war.</p>
<p>Meine Frage ist jetzt wie ich es Programmiere das sich die Desktopauflösung beim starten des Programmes auf 1024x768 ändert und wie ich das ganze wieder rückgängig mache wenn ich das Programm schließe???</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/135465/desktop-auflösung-ändern</link><generator>RSS for Node</generator><lastBuildDate>Sat, 01 Aug 2026 12:44:23 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/135465.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 02 Feb 2006 12:45:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Desktop auflösung ändern on Thu, 02 Feb 2006 12:45:40 GMT]]></title><description><![CDATA[<p>Mein C++ Programm wird im Fullscreen Ausgeführt. Ich habe das Programm mit der Auflösung 1024x768 erstellt. Mein Problem ist jetzt das wenn die Desktop Auflösung größer ist ich dann rechts und unten einen leeren Bereich habe, was ja auch soweit klar ist da ja das Programm mit der Auflösung 1024x768 erstellt wurde bzw. für diese Auflösung gedacht war.</p>
<p>Meine Frage ist jetzt wie ich es Programmiere das sich die Desktopauflösung beim starten des Programmes auf 1024x768 ändert und wie ich das ganze wieder rückgängig mache wenn ich das Programm schließe???</p>
]]></description><link>https://www.c-plusplus.net/forum/post/983879</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/983879</guid><dc:creator><![CDATA[Sebastian.M]]></dc:creator><pubDate>Thu, 02 Feb 2006 12:45:40 GMT</pubDate></item><item><title><![CDATA[Reply to Desktop auflösung ändern on Thu, 02 Feb 2006 12:52:10 GMT]]></title><description><![CDATA[<p><a href="http://www.marquardtnet.info/cecke/komponenten.2/2_changescreen.html" rel="nofollow">http://www.marquardtnet.info/cecke/komponenten.2/2_changescreen.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/983883</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/983883</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Thu, 02 Feb 2006 12:52:10 GMT</pubDate></item><item><title><![CDATA[Reply to Desktop auflösung ändern on Thu, 02 Feb 2006 17:08:24 GMT]]></title><description><![CDATA[<p>So ein Programm, das einfach meine Bildschirmauflösung ändert, würde keine Sekunde auf meinem Rechner überleben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/984219</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/984219</guid><dc:creator><![CDATA[MichelRT]]></dc:creator><pubDate>Thu, 02 Feb 2006 17:08:24 GMT</pubDate></item><item><title><![CDATA[Reply to Desktop auflösung ändern on Thu, 02 Feb 2006 17:11:00 GMT]]></title><description><![CDATA[<p>Ich hab ma ne Frage wegen dem TChangeScreen.</p>
<p>Also: Wenn ich die Werte nach dem Starten des Programms ändere und den Befehl Execute() gebe, passiert nichts... und wie kann ich die beim User momentane Bildschirmauflösung feststellen?</p>
<p>Vielen Dank</p>
]]></description><link>https://www.c-plusplus.net/forum/post/984223</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/984223</guid><dc:creator><![CDATA[IchTM]]></dc:creator><pubDate>Thu, 02 Feb 2006 17:11:00 GMT</pubDate></item><item><title><![CDATA[Reply to Desktop auflösung ändern on Thu, 02 Feb 2006 17:12:07 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/9016">@MichelRT</a> -&gt; Ahaa, di spielst keine Spiele</p>
]]></description><link>https://www.c-plusplus.net/forum/post/984224</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/984224</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Thu, 02 Feb 2006 17:12:07 GMT</pubDate></item><item><title><![CDATA[Reply to Desktop auflösung ändern on Thu, 02 Feb 2006 17:13:28 GMT]]></title><description><![CDATA[<p>Schau dir doch mal die Eigenschaften von TScreen in der Hilfe an.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/984226</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/984226</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Thu, 02 Feb 2006 17:13:28 GMT</pubDate></item><item><title><![CDATA[Reply to Desktop auflösung ändern on Thu, 02 Feb 2006 17:16:09 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">int TChangeScreen::Execute()
{
if(Check()==true)
	{
	dm.dmBitsPerPel=GetFarbtiefe();
	dm.dmFields|=DM_BITSPERPEL;
	dm.dmPelsWidth=GetBreite();
	dm.dmFields|=DM_PELSWIDTH;
	dm.dmPelsHeight=GetHoehe();
	dm.dmFields|=DM_PELSHEIGHT;
	dm.dmDisplayFrequency=GetFrequenz();
	dm.dmFields|=DM_DISPLAYFREQUENCY;
	return ChangeDisplaySettings(&amp;dm, CDS_UPDATEREGISTRY);
	}
return DISP_CHANGE_BADMODE;
}
</code></pre>
<p>Schau nach, was Exceute zurück gibt. Vergleiche hier dann die Werte:</p>
<p><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/devcons_7gz7.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/devcons_7gz7.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/984229</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/984229</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Thu, 02 Feb 2006 17:16:09 GMT</pubDate></item><item><title><![CDATA[Reply to Desktop auflösung ändern on Thu, 02 Feb 2006 19:41:38 GMT]]></title><description><![CDATA[<p>Oder nimm die Ursprungsfunktion:</p>
<p><a href="http://www.bytesandmore.de/rad/cpp/snipp/sc03020.php" rel="nofollow">http://www.bytesandmore.de/rad/cpp/snipp/sc03020.php</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/984398</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/984398</guid><dc:creator><![CDATA[rama]]></dc:creator><pubDate>Thu, 02 Feb 2006 19:41:38 GMT</pubDate></item></channel></rss>