<?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[MainForm rechts unten am Bildschirmrand andocken ?]]></title><description><![CDATA[<p>Wie kann ich das MainForm am rechten unteren Bildschirmrand andocken ? Ich hab schon gegoogelt wie verrückt aber nix gefunden. Mit Align komm ich leider nicht weiter da hier mein Fenster maximal rechts oben hängt.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/139591/mainform-rechts-unten-am-bildschirmrand-andocken</link><generator>RSS for Node</generator><lastBuildDate>Sun, 02 Aug 2026 21:00:55 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/139591.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 07 Mar 2006 20:17:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MainForm rechts unten am Bildschirmrand andocken ? on Tue, 07 Mar 2006 20:17:09 GMT]]></title><description><![CDATA[<p>Wie kann ich das MainForm am rechten unteren Bildschirmrand andocken ? Ich hab schon gegoogelt wie verrückt aber nix gefunden. Mit Align komm ich leider nicht weiter da hier mein Fenster maximal rechts oben hängt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1010991</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1010991</guid><dc:creator><![CDATA[bilbo_b]]></dc:creator><pubDate>Tue, 07 Mar 2006 20:17:09 GMT</pubDate></item><item><title><![CDATA[Reply to MainForm rechts unten am Bildschirmrand andocken ? on Tue, 07 Mar 2006 22:46:11 GMT]]></title><description><![CDATA[<p>wie wärs mit :<br />
Form1-&gt;Left = Screen-&gt;Width-Form1-&gt;Width;<br />
Form1-&gt;Top = Screen-&gt;Height-Form1-&gt;Height;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1011134</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1011134</guid><dc:creator><![CDATA[alikate]]></dc:creator><pubDate>Tue, 07 Mar 2006 22:46:11 GMT</pubDate></item><item><title><![CDATA[Reply to MainForm rechts unten am Bildschirmrand andocken ? on Wed, 08 Mar 2006 09:58:56 GMT]]></title><description><![CDATA[<p>oder einfacher</p>
<pre><code class="language-cpp">Form1-&gt;Left = Screen-&gt;DesktopLeft;
Form1-&gt;Bottom = Screen-&gt;Height;
</code></pre>
<p>Wobei hier vor der Taskbar nicht berücksichtigt wird. Wenn der untere Rand der Form mit dem oberen der TaskLeiste abschließen soll kann man auch das hier nehmen.</p>
<pre><code class="language-cpp">RECT rect;
SystemParametersInfo(SPI_GETWORKAREA, 0, &amp;rect, 0);
Form1-&gt;Left = rect.left;
Form1-&gt;Bottom = rect.bottom;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1011320</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1011320</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Wed, 08 Mar 2006 09:58:56 GMT</pubDate></item><item><title><![CDATA[Reply to MainForm rechts unten am Bildschirmrand andocken ? on Wed, 08 Mar 2006 10:05:12 GMT]]></title><description><![CDATA[<p>Bottom is not a member of TForm1 ^^</p>
<p>TOPTOPTOPTOPTOPTOPTOPTOPTOPTOPTOPTOPTOPTOPTOPTOPTOPTOP</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1011329</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1011329</guid><dc:creator><![CDATA[alikate]]></dc:creator><pubDate>Wed, 08 Mar 2006 10:05:12 GMT</pubDate></item><item><title><![CDATA[Reply to MainForm rechts unten am Bildschirmrand andocken ? on Wed, 08 Mar 2006 10:07:17 GMT]]></title><description><![CDATA[<p>ausserdem verschwindet die form im jenseits ^^</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1011335</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1011335</guid><dc:creator><![CDATA[alikate]]></dc:creator><pubDate>Wed, 08 Mar 2006 10:07:17 GMT</pubDate></item><item><title><![CDATA[Reply to MainForm rechts unten am Bildschirmrand andocken ? on Wed, 08 Mar 2006 10:09:19 GMT]]></title><description><![CDATA[<p>Hast ja recht. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /><br />
Also wie oben schon gezeigt Top mit der dazugehörigen Berechnung verwenden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1011337</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1011337</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Wed, 08 Mar 2006 10:09:19 GMT</pubDate></item><item><title><![CDATA[Reply to MainForm rechts unten am Bildschirmrand andocken ? on Wed, 08 Mar 2006 10:11:13 GMT]]></title><description><![CDATA[<p>dann aber eher so:<br />
RECT rect;<br />
SystemParametersInfo(SPI_GETWORKAREA, 0, &amp;rect, 0);<br />
Form1-&gt;Left = Screen-&gt;Width-Form1-&gt;Width;<br />
Form1-&gt;Top = Screen-&gt;Height-Form1-&gt;Height-SPI_GETWORKAREA/2;</p>
<p>deins geht irgendwie links unter dem bildschirmrand</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1011343</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1011343</guid><dc:creator><![CDATA[alikate]]></dc:creator><pubDate>Wed, 08 Mar 2006 10:11:13 GMT</pubDate></item><item><title><![CDATA[Reply to MainForm rechts unten am Bildschirmrand andocken ? on Wed, 08 Mar 2006 10:12:24 GMT]]></title><description><![CDATA[<p>ähm ich meine so :</p>
<p>Form1-&gt;Left = Screen-&gt;Width-Form1-&gt;Width;<br />
Form1-&gt;Top = Screen-&gt;Height-Form1-&gt;Height-SPI_GETWORKAREA/2;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1011346</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1011346</guid><dc:creator><![CDATA[alikate]]></dc:creator><pubDate>Wed, 08 Mar 2006 10:12:24 GMT</pubDate></item><item><title><![CDATA[Reply to MainForm rechts unten am Bildschirmrand andocken ? on Wed, 08 Mar 2006 10:31:19 GMT]]></title><description><![CDATA[<p>Ok, das hier funktioniert bei mir</p>
<pre><code class="language-cpp">RECT rect;
SystemParametersInfo(SPI_GETWORKAREA, 0, &amp;rect, 0);
Form1-&gt;Left = rect.left;
Form1-&gt;Top = rect.bottom - Form1-&gt;Height;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1011362</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1011362</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Wed, 08 Mar 2006 10:31:19 GMT</pubDate></item></channel></rss>