<?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[Gegenstück zu ShowWindow?]]></title><description><![CDATA[<p>Hi,</p>
<p>mit ShowWindow kann ich ja folgende werte setzen:<br />
SW_FORCEMINIMIZE<br />
SW_HIDE<br />
SW_MAXIMIZE<br />
SW_MINIMIZE<br />
SW_RESTORE<br />
SW_SHOW<br />
SW_SHOWDEFAULT<br />
SW_SHOWMAXIMIZED<br />
SW_SHOWMINIMIZED<br />
SW_SHOWMINNOACTIVE<br />
SW_SHOWNA<br />
SW_SHOWNOACTIVATE<br />
SW_SHOWNORMAL</p>
<p>und die kann ich zur laufzeit ändern, d.h. sie müssen nicht umbedingt mit dem Startup zusammenhängen.</p>
<p>Jetzt ist meine Frage: Wie kann ich den aktuellen &quot;Show-Status&quot; des Fensters abfragen? Sowas wie &quot;GetShowWindowValue&quot; gibt es ja leider nicht, der mir diese SW-Werte wiedergibt.</p>
<p>Jemand eine Idee?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/196702/gegenstück-zu-showwindow</link><generator>RSS for Node</generator><lastBuildDate>Sat, 02 May 2026 06:45:24 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/196702.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 01 Nov 2007 22:24:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Gegenstück zu ShowWindow? on Thu, 01 Nov 2007 22:24:04 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>mit ShowWindow kann ich ja folgende werte setzen:<br />
SW_FORCEMINIMIZE<br />
SW_HIDE<br />
SW_MAXIMIZE<br />
SW_MINIMIZE<br />
SW_RESTORE<br />
SW_SHOW<br />
SW_SHOWDEFAULT<br />
SW_SHOWMAXIMIZED<br />
SW_SHOWMINIMIZED<br />
SW_SHOWMINNOACTIVE<br />
SW_SHOWNA<br />
SW_SHOWNOACTIVATE<br />
SW_SHOWNORMAL</p>
<p>und die kann ich zur laufzeit ändern, d.h. sie müssen nicht umbedingt mit dem Startup zusammenhängen.</p>
<p>Jetzt ist meine Frage: Wie kann ich den aktuellen &quot;Show-Status&quot; des Fensters abfragen? Sowas wie &quot;GetShowWindowValue&quot; gibt es ja leider nicht, der mir diese SW-Werte wiedergibt.</p>
<p>Jemand eine Idee?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1396141</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1396141</guid><dc:creator><![CDATA[ShowWindow User]]></dc:creator><pubDate>Thu, 01 Nov 2007 22:24:04 GMT</pubDate></item><item><title><![CDATA[Reply to Gegenstück zu ShowWindow? on Thu, 01 Nov 2007 22:26:21 GMT]]></title><description><![CDATA[<p>GetWindowInfo</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1396142</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1396142</guid><dc:creator><![CDATA[Listing]]></dc:creator><pubDate>Thu, 01 Nov 2007 22:26:21 GMT</pubDate></item><item><title><![CDATA[Reply to Gegenstück zu ShowWindow? on Thu, 01 Nov 2007 22:30:21 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">typedef struct {
    DWORD cbSize;
    RECT rcWindow;
    RECT rcClient;
    DWORD dwStyle;
    DWORD dwExStyle;
    DWORD dwWindowStatus;
    UINT cxWindowBorders;
    UINT cyWindowBorders;
    ATOM atomWindowType;
    WORD wCreatorVersion;
} WINDOWINFO, *PWINDOWINFO, *LPWINDOWINFO;
</code></pre>
<p>Bietet mir jedoch kein Feld &quot;nShow&quot; - welches ich brauche.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1396143</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1396143</guid><dc:creator><![CDATA[ShowWindow User]]></dc:creator><pubDate>Thu, 01 Nov 2007 22:30:21 GMT</pubDate></item><item><title><![CDATA[Reply to Gegenstück zu ShowWindow? on Thu, 01 Nov 2007 22:32:01 GMT]]></title><description><![CDATA[<p><a href="http://msdn2.microsoft.com/en-us/library/ms633518.aspx" rel="nofollow">GetWindowPlacement ()</a> -&gt; Member showCmd der WINDOWPLACEMENT-Struktur.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1396144</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1396144</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Thu, 01 Nov 2007 22:32:01 GMT</pubDate></item></channel></rss>