<?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[wie kann ich fenster nebeneinandersetzen]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include &lt;iostream&gt;
using namespace std;
int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
    HWND hwnd = FindWindow(&quot;ConsoleWindowClass&quot;,NULL);
        EnableMenuItem(GetSystemMenu(hwnd,false),SC_CLOSE,MF_GRAYED);

	MessageBox(NULL, &quot;---------------HI!--------------&quot;, &quot;      HI!&quot;, 1);
         MessageBox(NULL, &quot;---------------HI!--------------&quot;, &quot;      HI!&quot;, 1);
         MessageBox(NULL, &quot;---------------HI!--------------&quot;, &quot;      HI!&quot;, 1);
</code></pre>
<p>Wie kann ich die drei Fenster nebeneinandersetzen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/127954/wie-kann-ich-fenster-nebeneinandersetzen</link><generator>RSS for Node</generator><lastBuildDate>Wed, 08 Jul 2026 17:14:45 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/127954.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 28 Nov 2005 21:25:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to wie kann ich fenster nebeneinandersetzen on Mon, 28 Nov 2005 21:25:04 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include &lt;iostream&gt;
using namespace std;
int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
    HWND hwnd = FindWindow(&quot;ConsoleWindowClass&quot;,NULL);
        EnableMenuItem(GetSystemMenu(hwnd,false),SC_CLOSE,MF_GRAYED);

	MessageBox(NULL, &quot;---------------HI!--------------&quot;, &quot;      HI!&quot;, 1);
         MessageBox(NULL, &quot;---------------HI!--------------&quot;, &quot;      HI!&quot;, 1);
         MessageBox(NULL, &quot;---------------HI!--------------&quot;, &quot;      HI!&quot;, 1);
</code></pre>
<p>Wie kann ich die drei Fenster nebeneinandersetzen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929301</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929301</guid><dc:creator><![CDATA[imo]]></dc:creator><pubDate>Mon, 28 Nov 2005 21:25:04 GMT</pubDate></item><item><title><![CDATA[Reply to wie kann ich fenster nebeneinandersetzen on Mon, 28 Nov 2005 21:45:51 GMT]]></title><description><![CDATA[<p>Wie &quot;nebeneinander&quot;?<br />
Die Fenster werden nie gleichzeitig angezeigt, was willst Du da nebeneinander setzen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929314</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929314</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Mon, 28 Nov 2005 21:45:51 GMT</pubDate></item><item><title><![CDATA[Reply to wie kann ich fenster nebeneinandersetzen on Mon, 28 Nov 2005 21:47:27 GMT]]></title><description><![CDATA[<p>gibt es keine möglichkeit mehrere fenster gleichzeitig nebeneinander anzuzeigen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929316</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929316</guid><dc:creator><![CDATA[imo]]></dc:creator><pubDate>Mon, 28 Nov 2005 21:47:27 GMT</pubDate></item><item><title><![CDATA[Reply to wie kann ich fenster nebeneinandersetzen on Mon, 28 Nov 2005 22:01:37 GMT]]></title><description><![CDATA[<p>Mit der MessageBox Funktion nicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929327</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929327</guid><dc:creator><![CDATA[..............]]></dc:creator><pubDate>Mon, 28 Nov 2005 22:01:37 GMT</pubDate></item><item><title><![CDATA[Reply to wie kann ich fenster nebeneinandersetzen on Tue, 29 Nov 2005 06:41:26 GMT]]></title><description><![CDATA[<p>CreateWindow, ShowWindow</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929386</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929386</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Tue, 29 Nov 2005 06:41:26 GMT</pubDate></item><item><title><![CDATA[Reply to wie kann ich fenster nebeneinandersetzen on Tue, 29 Nov 2005 07:19:37 GMT]]></title><description><![CDATA[<p>ggf. auch CreateDialog. Das sollte aber nicht unbedingt für große Projekte genutzt werden- wird etwas langsam.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/929396</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/929396</guid><dc:creator><![CDATA[DocJunioR]]></dc:creator><pubDate>Tue, 29 Nov 2005 07:19:37 GMT</pubDate></item></channel></rss>