<?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 Maximiert starten]]></title><description><![CDATA[<p>Hallo Leute!</p>
<p>Gibt es eine möglichkeit das Hauptfenster bei einer Win32 App. beim start maximiert zu starten?</p>
<p>Im Normalfall öffnet sich ja &quot;normal&quot;.</p>
<p>Vielleicht muss man was im folgenden Codebereich änder:</p>
<pre><code class="language-cpp">hwnd = CreateWindowEx (
           0,                   /* Extended possibilites for variation */
           szClassName,         /* Classname */
           &quot;KUKA MOUSE MOVE APP&quot;,       /* Title Text */
           WS_OVERLAPPEDWINDOW, /* default window */                               //Maximiert starten!
           CW_USEDEFAULT,       /* Windows decides the position */
           CW_USEDEFAULT,       /* where the window ends up on the screen */
           1000,                 /* The programs width */
           700,                 /* and height in pixels */
           HWND_DESKTOP,        /* The window is a child-window to desktop */
           NULL,                /* No menu */
           hThisInstance,       /* Program Instance handler */
           NULL                 /* No Window Creation data */
           );

    /* Make the window visible on the screen */
    ShowWindow (hwnd, nFunsterStil);
</code></pre>
<p>Gruß<br />
WAR][FIRE</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/244336/fenster-maximiert-starten</link><generator>RSS for Node</generator><lastBuildDate>Fri, 03 Apr 2026 23:03:20 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/244336.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 28 Jun 2009 18:42:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fenster Maximiert starten on Sun, 28 Jun 2009 18:42:36 GMT]]></title><description><![CDATA[<p>Hallo Leute!</p>
<p>Gibt es eine möglichkeit das Hauptfenster bei einer Win32 App. beim start maximiert zu starten?</p>
<p>Im Normalfall öffnet sich ja &quot;normal&quot;.</p>
<p>Vielleicht muss man was im folgenden Codebereich änder:</p>
<pre><code class="language-cpp">hwnd = CreateWindowEx (
           0,                   /* Extended possibilites for variation */
           szClassName,         /* Classname */
           &quot;KUKA MOUSE MOVE APP&quot;,       /* Title Text */
           WS_OVERLAPPEDWINDOW, /* default window */                               //Maximiert starten!
           CW_USEDEFAULT,       /* Windows decides the position */
           CW_USEDEFAULT,       /* where the window ends up on the screen */
           1000,                 /* The programs width */
           700,                 /* and height in pixels */
           HWND_DESKTOP,        /* The window is a child-window to desktop */
           NULL,                /* No menu */
           hThisInstance,       /* Program Instance handler */
           NULL                 /* No Window Creation data */
           );

    /* Make the window visible on the screen */
    ShowWindow (hwnd, nFunsterStil);
</code></pre>
<p>Gruß<br />
WAR][FIRE</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1734218</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1734218</guid><dc:creator><![CDATA[WAR**FIRE]]></dc:creator><pubDate>Sun, 28 Jun 2009 18:42:36 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster Maximiert starten on Sun, 28 Jun 2009 19:15:53 GMT]]></title><description><![CDATA[<p>setz beim zweiten parameter von showwindow einfach SW_MAXIMIZE ein.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1734228</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1734228</guid><dc:creator><![CDATA[player4245]]></dc:creator><pubDate>Sun, 28 Jun 2009 19:15:53 GMT</pubDate></item><item><title><![CDATA[Reply to Fenster Maximiert starten on Sun, 28 Jun 2009 20:03:15 GMT]]></title><description><![CDATA[<p>Oder eben mit dem Stil WS_MAXIMIZED!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1734248</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1734248</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Sun, 28 Jun 2009 20:03:15 GMT</pubDate></item></channel></rss>