<?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[Start in fullscreen]]></title><description><![CDATA[<p>Hallo,</p>
<p>Ich habe hier in meiner Applikation die Möglichkeit dass der Benutzer sagen kann das diese Applikation in Vollbild starten soll.</p>
<p>funktioniert auch ganz gut mit<br />
ShowWindow(SW_SHOWMAXIMIZED);<br />
nach dem OnCreate</p>
<p>Das Problem nun ist nur, sobald man dann es wieder kleiner machen will, muss man das Fenster von der gesamten Größe kleiner ziehen.<br />
D.h. das Programm hat sich nicht &quot;Gemerkt&quot; wie die alte Position und Größe war vor dem ReSizen mit &quot;ShowWindow&quot;</p>
<p>Ne Idee?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/192267/start-in-fullscreen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 01:07:58 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/192267.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 12 Sep 2007 12:15:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Start in fullscreen on Wed, 12 Sep 2007 12:15:21 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Ich habe hier in meiner Applikation die Möglichkeit dass der Benutzer sagen kann das diese Applikation in Vollbild starten soll.</p>
<p>funktioniert auch ganz gut mit<br />
ShowWindow(SW_SHOWMAXIMIZED);<br />
nach dem OnCreate</p>
<p>Das Problem nun ist nur, sobald man dann es wieder kleiner machen will, muss man das Fenster von der gesamten Größe kleiner ziehen.<br />
D.h. das Programm hat sich nicht &quot;Gemerkt&quot; wie die alte Position und Größe war vor dem ReSizen mit &quot;ShowWindow&quot;</p>
<p>Ne Idee?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1363970</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1363970</guid><dc:creator><![CDATA[EXDW]]></dc:creator><pubDate>Wed, 12 Sep 2007 12:15:21 GMT</pubDate></item><item><title><![CDATA[Reply to Start in fullscreen on Wed, 12 Sep 2007 12:39:58 GMT]]></title><description><![CDATA[<p>wie wäre es mit</p>
<p>ShowWindow(SW_SHOWNORMAL);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1363983</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1363983</guid><dc:creator><![CDATA[Turmfalke64]]></dc:creator><pubDate>Wed, 12 Sep 2007 12:39:58 GMT</pubDate></item><item><title><![CDATA[Reply to Start in fullscreen on Wed, 12 Sep 2007 12:54:28 GMT]]></title><description><![CDATA[<p>Setze CWinApp::m_nCmdChow auf SW_MAXIMIZE!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1363996</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1363996</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Wed, 12 Sep 2007 12:54:28 GMT</pubDate></item><item><title><![CDATA[Reply to Start in fullscreen on Wed, 12 Sep 2007 13:26:05 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/13695">@Turmfalke64</a><br />
Schon probiert, bringt nichts</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/35992">@Martin</a> Richter<br />
&quot;CWinApp::m_nCmdChow&quot; kennt mein VS nicht<br />
und wo muesste ich das setzen?<br />
Habs in &quot;PreCreateWindow&quot; der MainFrm probiert</p>
<p>// edit - war zu schnell er sagt: illegal reference to non-static member 'CWinApp::m_nCmdShow'<br />
trotzdem bleibt weiterhin die frage, wie und wo</p>
<p>hab nur ein CMainWnd und dazu passenden CChildView<br />
FrameWnd ist von CFrameWndabgeleitet, und die ChildView von CWnd</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1364012</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1364012</guid><dc:creator><![CDATA[EXDW]]></dc:creator><pubDate>Wed, 12 Sep 2007 13:26:05 GMT</pubDate></item><item><title><![CDATA[Reply to Start in fullscreen on Wed, 12 Sep 2007 13:33:06 GMT]]></title><description><![CDATA[<p>hab ne moeglichkeit gefunden<br />
ich packs einfach dahin</p>
<pre><code class="language-cpp">void CMainFrame::OnSetFocus(CWnd*)
{
    m_wndView.SetFocus();
    if(m_wndView.SettingsOnOk(_T(&quot;Fullscreen&quot;)) == TRUE)
        this-&gt;ShowWindow(SW_MAXIMIZE);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1364023</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1364023</guid><dc:creator><![CDATA[EXDW]]></dc:creator><pubDate>Wed, 12 Sep 2007 13:33:06 GMT</pubDate></item></channel></rss>