<?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[Fenster in Vordergrund holen]]></title><description><![CDATA[<p>Hi,</p>
<p>ich versuche mittels eines HotKeys meine minimierte Anwendung<br />
in den Vordergrund zu holen.</p>
<p>SetForeGroundWindow funzt nicht, da die Anwendung minimiert ist.</p>
<p>Wie kann ich feststellen ob es minimiert ist, und wie kann ich dann<br />
es wieder nach vorne holen ?</p>
<p>Devil</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/6168/fenster-in-vordergrund-holen</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 19:43:53 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/6168.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 14 Jun 2003 16:05:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fenster in Vordergrund holen on Sat, 14 Jun 2003 16:05:00 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>ich versuche mittels eines HotKeys meine minimierte Anwendung<br />
in den Vordergrund zu holen.</p>
<p>SetForeGroundWindow funzt nicht, da die Anwendung minimiert ist.</p>
<p>Wie kann ich feststellen ob es minimiert ist, und wie kann ich dann<br />
es wieder nach vorne holen ?</p>
<p>Devil</p>
]]></description><link>https://www.c-plusplus.net/forum/post/29895</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/29895</guid><dc:creator><![CDATA[phlox81]]></dc:creator><pubDate>Sat, 14 Jun 2003 16:05:00 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster in Vordergrund holen on Sat, 14 Jun 2003 16:19:00 GMT]]></title><description><![CDATA[<p>Moin!</p>
<pre><code class="language-cpp">WINDOWPLACEMENT wnd;
wnd.length = sizeof(WINDOWPLACEMENT);
GetWindowPlacement(&amp;wnd);
if(wnd.showCmd == SW_SHOWMAXIMIZED)
  AfxMessageBox(&quot;Meine Anwendung ist maximiert&quot;);
</code></pre>
<p>Zeiger aufs Window und ShowWindow(SW_MAIXIMIZED)<br />
mfg mike</p>
]]></description><link>https://www.c-plusplus.net/forum/post/29896</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/29896</guid><dc:creator><![CDATA[*mike*]]></dc:creator><pubDate>Sat, 14 Jun 2003 16:19:00 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster in Vordergrund holen on Sat, 14 Jun 2003 16:33:00 GMT]]></title><description><![CDATA[<p>Danke.<br />
Habs jetzt hinbekommen.<br />
Noch eine Frage, wie bekomm ich das HWND des Fensters, was _vor_ meiner Andwendung<br />
den Focus hatte ?</p>
<p>::GetForeGroundWindow()<br />
ist die Lösung <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
<p>Devil</p>
<p>[ Dieser Beitrag wurde am 14.06.2003 um 18:52 Uhr von <strong>devil81</strong> editiert. ]</p>
]]></description><link>https://www.c-plusplus.net/forum/post/29897</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/29897</guid><dc:creator><![CDATA[phlox81]]></dc:creator><pubDate>Sat, 14 Jun 2003 16:33:00 GMT</pubDate></item></channel></rss>