<?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[Danymic Label in GroupBox]]></title><description><![CDATA[<p>Habe folgendes Probelm:<br />
Ich erstelle ein dynamisches Array mit TLabels und möchte die nun in einer GroupBox anzeigen, wie kann ich die nun in die GroupBox einfügen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/99709/danymic-label-in-groupbox</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Jul 2026 23:48:01 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/99709.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 31 Jan 2005 09:18:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Danymic Label in GroupBox on Mon, 31 Jan 2005 09:18:47 GMT]]></title><description><![CDATA[<p>Habe folgendes Probelm:<br />
Ich erstelle ein dynamisches Array mit TLabels und möchte die nun in einer GroupBox anzeigen, wie kann ich die nun in die GroupBox einfügen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/710943</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/710943</guid><dc:creator><![CDATA[wedmer]]></dc:creator><pubDate>Mon, 31 Jan 2005 09:18:47 GMT</pubDate></item><item><title><![CDATA[Reply to Danymic Label in GroupBox on Mon, 31 Jan 2005 09:20:37 GMT]]></title><description><![CDATA[<p>In dem du die Parent-Eigenschaft entsprechend setzt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/710946</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/710946</guid><dc:creator><![CDATA[Dasd]]></dc:creator><pubDate>Mon, 31 Jan 2005 09:20:37 GMT</pubDate></item><item><title><![CDATA[Reply to Danymic Label in GroupBox on Mon, 31 Jan 2005 10:32:42 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">void __fastcall TForm1::Button1Click(TObject *Sender)
{
    // Counter
    static int count;

    // Groupbox erstellen
    TGroupBox* gb=new TGroupBox(Form1);
    gb-&gt;Parent=Form1;
    gb-&gt;Width=300;
    gb-&gt;Height=150;
    gb-&gt;Left=8;
    gb-&gt;Top=8+count*gb-&gt;Height;
    gb-&gt;Caption=&quot;GroupBox &quot;+IntToStr(++count);

    // 10 Labels in Groupbox schreiben
    TLabel* l[10];
    for(int i=0;i&lt;10;++i)
    {
        l[i]=new TLabel(Form1);
        l[i]-&gt;Parent=gb;
        l[i]-&gt;Left=8;
        l[i]-&gt;Top=16+i*12;
        l[i]-&gt;Caption=&quot;Label &quot;+IntToStr(i+1);
    }
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/711006</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/711006</guid><dc:creator><![CDATA[Windoof]]></dc:creator><pubDate>Mon, 31 Jan 2005 10:32:42 GMT</pubDate></item><item><title><![CDATA[Reply to Danymic Label in GroupBox on Mon, 31 Jan 2005 13:08:14 GMT]]></title><description><![CDATA[<p>Hat geklapt, thanks</p>
]]></description><link>https://www.c-plusplus.net/forum/post/711143</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/711143</guid><dc:creator><![CDATA[wedmer]]></dc:creator><pubDate>Mon, 31 Jan 2005 13:08:14 GMT</pubDate></item></channel></rss>