<?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[Eigenschaften des Fensters ermitteln]]></title><description><![CDATA[<p>Ich benutze folgende Funktion um das Handle meines Fensters zu bekommen:<br />
FindWindow</p>
<p>Wie kann ich ermitteln welches State das Handle hat, also SW_HIDE SW_SHOW..?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/71359/eigenschaften-des-fensters-ermitteln</link><generator>RSS for Node</generator><lastBuildDate>Thu, 09 Apr 2026 17:19:31 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/71359.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 17 Apr 2004 15:24:13 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Eigenschaften des Fensters ermitteln on Sat, 17 Apr 2004 15:24:55 GMT]]></title><description><![CDATA[<p>Ich benutze folgende Funktion um das Handle meines Fensters zu bekommen:<br />
FindWindow</p>
<p>Wie kann ich ermitteln welches State das Handle hat, also SW_HIDE SW_SHOW..?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/503319</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/503319</guid><dc:creator><![CDATA[Tillmann David]]></dc:creator><pubDate>Sat, 17 Apr 2004 15:24:55 GMT</pubDate></item><item><title><![CDATA[Reply to Eigenschaften des Fensters ermitteln on Sat, 17 Apr 2004 16:04:36 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile.php?mode=viewprofile&amp;u=437" rel="nofollow">Jansen</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=2" rel="nofollow">Borland C++ Builder (VCL/CLX)</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=4" rel="nofollow">WinAPI</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39405" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/503338</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/503338</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Sat, 17 Apr 2004 16:04:36 GMT</pubDate></item><item><title><![CDATA[Reply to Eigenschaften des Fensters ermitteln on Sat, 17 Apr 2004 16:26:38 GMT]]></title><description><![CDATA[<p>Also für SW_HIDE/SW_SHOW würde schon IsWindowVisible(hwnd) reichen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/503353</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/503353</guid><dc:creator><![CDATA[nirsaja]]></dc:creator><pubDate>Sat, 17 Apr 2004 16:26:38 GMT</pubDate></item><item><title><![CDATA[Reply to Eigenschaften des Fensters ermitteln on Sat, 17 Apr 2004 18:20:28 GMT]]></title><description><![CDATA[<p>GetWindowLong(hwnd, GWL_STYLE);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/503426</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/503426</guid><dc:creator><![CDATA[D*niel *chumann]]></dc:creator><pubDate>Sat, 17 Apr 2004 18:20:28 GMT</pubDate></item><item><title><![CDATA[Reply to Eigenschaften des Fensters ermitteln on Sat, 17 Apr 2004 19:13:04 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">WINDOWPLACEMENT wp;

wp.length=sizeof(WINDOWPLACEMENT);
GetWindowPlacement(hWnd,&amp;wp);

// in wp.showCmd steht jetzt SW_HIDE oder SW_SHOW oder SW_SHOWMINIMIZED, ...
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/503452</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/503452</guid><dc:creator><![CDATA[geeky]]></dc:creator><pubDate>Sat, 17 Apr 2004 19:13:04 GMT</pubDate></item></channel></rss>