<?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[Wieso hier StackOverflow??]]></title><description><![CDATA[<pre><code class="language-cpp">void __fastcall TForm1::CheckBox1Click(TObject *Sender)
{
if(CheckBox1-&gt;Checked)
 {
  CheckBox1-&gt;Checked=false;
  ComboBox1-&gt;Enabled=true;
  Button2-&gt;Enabled=true;
  Button3-&gt;Enabled=true;
 }
else
 {
  CheckBox1-&gt;Checked=true;
  ComboBox1-&gt;Enabled=false;
  Button2-&gt;Enabled=false;
  Button3-&gt;Enabled=false;
 }
}
</code></pre>
<p>mein verständnis verlässt mich hier wohl!</p>
<p>Aber wenn ich die CheckBox benutze, bekomme ich einen StackOverflow!<br />
Wieso?</p>
<p>(CheckBox ist standard nicht checked!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/146798/wieso-hier-stackoverflow</link><generator>RSS for Node</generator><lastBuildDate>Wed, 05 Aug 2026 21:11:53 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/146798.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 11 May 2006 05:28:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Wieso hier StackOverflow?? on Thu, 11 May 2006 05:28:17 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">void __fastcall TForm1::CheckBox1Click(TObject *Sender)
{
if(CheckBox1-&gt;Checked)
 {
  CheckBox1-&gt;Checked=false;
  ComboBox1-&gt;Enabled=true;
  Button2-&gt;Enabled=true;
  Button3-&gt;Enabled=true;
 }
else
 {
  CheckBox1-&gt;Checked=true;
  ComboBox1-&gt;Enabled=false;
  Button2-&gt;Enabled=false;
  Button3-&gt;Enabled=false;
 }
}
</code></pre>
<p>mein verständnis verlässt mich hier wohl!</p>
<p>Aber wenn ich die CheckBox benutze, bekomme ich einen StackOverflow!<br />
Wieso?</p>
<p>(CheckBox ist standard nicht checked!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1055259</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1055259</guid><dc:creator><![CDATA[Sinalco]]></dc:creator><pubDate>Thu, 11 May 2006 05:28:17 GMT</pubDate></item><item><title><![CDATA[Reply to Wieso hier StackOverflow?? on Thu, 11 May 2006 05:54:22 GMT]]></title><description><![CDATA[<p>ist nicht grad verwunderlich, schließlich setzt du in der OnClick-Behandlung die CheckBox selbst wieder auf Checked=true/false und löst somit das Ereignis in einer Endlosschleife aus, naja nicht ganz endlos...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1055269</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1055269</guid><dc:creator><![CDATA[Linnea]]></dc:creator><pubDate>Thu, 11 May 2006 05:54:22 GMT</pubDate></item><item><title><![CDATA[Reply to Wieso hier StackOverflow?? on Thu, 11 May 2006 06:08:10 GMT]]></title><description><![CDATA[<p>ach, wenn ich die checkbox auf checked setze, wird das oinclick auch ausgelöst, obwohl ich nicht wirklich &quot;klicke&quot;?</p>
<p>wie kann ich das umgehen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1055272</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1055272</guid><dc:creator><![CDATA[Sinalco]]></dc:creator><pubDate>Thu, 11 May 2006 06:08:10 GMT</pubDate></item><item><title><![CDATA[Reply to Wieso hier StackOverflow?? on Thu, 11 May 2006 06:19:14 GMT]]></title><description><![CDATA[<p>schau mal in die FAQ</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1055278</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1055278</guid><dc:creator><![CDATA[Linnea]]></dc:creator><pubDate>Thu, 11 May 2006 06:19:14 GMT</pubDate></item><item><title><![CDATA[Reply to Wieso hier StackOverflow?? on Thu, 11 May 2006 08:23:00 GMT]]></title><description><![CDATA[<p>Warum setzt du überhaupt CheckBox1-&gt;Checked=false; wenn das Häkchen gesetzt ist? Das ist für einen Nutzer doch etwas merkwürdig, wenn er auf eine Checkbox klickt und das Häkchen verschwindet gleich wieder. Was willst du mit diesem Code denn erreichen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1055344</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1055344</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Thu, 11 May 2006 08:23:00 GMT</pubDate></item><item><title><![CDATA[Reply to Wieso hier StackOverflow?? on Thu, 11 May 2006 09:43:36 GMT]]></title><description><![CDATA[<p>Also</p>
<p>ich möchte, das wenn man auf die CheckBox klickt, das ein paar buttons disabled werden, und eben der hacken gesetzt!</p>
<p>wenn der hacken schon gesetztt ist, soll er weg gehen!<br />
(macht er ja aber glaub ich sowieso)...=/</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1055419</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1055419</guid><dc:creator><![CDATA[Sinalco]]></dc:creator><pubDate>Thu, 11 May 2006 09:43:36 GMT</pubDate></item><item><title><![CDATA[Reply to Wieso hier StackOverflow?? on Thu, 11 May 2006 09:53:31 GMT]]></title><description><![CDATA[<p>Den <strong>Haken</strong> setzt deine Checkbox schon selbst. Das brauchst du nicht zu machen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1055429</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1055429</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Thu, 11 May 2006 09:53:31 GMT</pubDate></item></channel></rss>