<?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[Stack-Überlauf]]></title><description><![CDATA[<p>hi, kann mir jemand bei meinem problem helfen?</p>
<pre><code>void __fastcall TForm1::Memo1Change(TObject *Sender)
{
try{
        AnsiString k = Memo1-&gt;Text;

        AnsiString j = k[1] ;
        j = j.UpperCase();
        k = RightStr(k, k.Length() - 1);
        k = k + j;

        Memo1-&gt;Text = k;
}
catch(...)
 {
 }
}
</code></pre>
<p>bei diesem quelltext hägt das programm sich auf. Die fehlermeldung lautet stack-überlauf!?!? woran leigt das ? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/88091/stack-überlauf</link><generator>RSS for Node</generator><lastBuildDate>Sun, 05 Jul 2026 01:00:20 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/88091.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 06 Oct 2004 12:56:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Stack-Überlauf on Wed, 06 Oct 2004 12:56:54 GMT]]></title><description><![CDATA[<p>hi, kann mir jemand bei meinem problem helfen?</p>
<pre><code>void __fastcall TForm1::Memo1Change(TObject *Sender)
{
try{
        AnsiString k = Memo1-&gt;Text;

        AnsiString j = k[1] ;
        j = j.UpperCase();
        k = RightStr(k, k.Length() - 1);
        k = k + j;

        Memo1-&gt;Text = k;
}
catch(...)
 {
 }
}
</code></pre>
<p>bei diesem quelltext hägt das programm sich auf. Die fehlermeldung lautet stack-überlauf!?!? woran leigt das ? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/622410</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/622410</guid><dc:creator><![CDATA[tuxman]]></dc:creator><pubDate>Wed, 06 Oct 2004 12:56:54 GMT</pubDate></item><item><title><![CDATA[Reply to Stack-Überlauf on Wed, 06 Oct 2004 13:00:38 GMT]]></title><description><![CDATA[<p>Du änderst den Text, wodurch sich der Text ändert, wobei die Textänderung ausgelöst wird, die den Text ändert, wodurch die Textänderung ausgelöst wird, die den Text ändert.... soll ich weiter machen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/622413</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/622413</guid><dc:creator><![CDATA[Plemplem]]></dc:creator><pubDate>Wed, 06 Oct 2004 13:00:38 GMT</pubDate></item><item><title><![CDATA[Reply to Stack-Überlauf on Wed, 06 Oct 2004 13:33:43 GMT]]></title><description><![CDATA[<p>Aach so verstehe <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /> und wie kann ich das beheben? ich will den text schon während des schreibens ändern. kann auch sein dass ich einfach ne möglischkeit übersehen hab aber kann mir trotzdem wer helfen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/622430</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/622430</guid><dc:creator><![CDATA[tuxman]]></dc:creator><pubDate>Wed, 06 Oct 2004 13:33:43 GMT</pubDate></item><item><title><![CDATA[Reply to Stack-Überlauf on Wed, 06 Oct 2004 13:54:05 GMT]]></title><description><![CDATA[<p>Ein Flag setzen und auswerten, das dir anzeigt, ob die Änderung vom User verursacht wurde oder Resultat deiner Routine ist? Oder OnKey... verwenden statt OnChange?</p>
<p>Was soll dein Code eigentlich bezwecken? Meintest du nicht eigentlich <em>k = j + k;</em>? Wenn ja, was was hältst du davon:</p>
<pre><code class="language-cpp">AnsiString k = Memo1-&gt;Text;
k[1] = UpperCase(k[1])[1];
Memo1-&gt;Text = k;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/622446</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/622446</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Wed, 06 Oct 2004 13:54:05 GMT</pubDate></item><item><title><![CDATA[Reply to Stack-Überlauf on Wed, 06 Oct 2004 15:34:57 GMT]]></title><description><![CDATA[<p>cool danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/622549</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/622549</guid><dc:creator><![CDATA[tuxman]]></dc:creator><pubDate>Wed, 06 Oct 2004 15:34:57 GMT</pubDate></item></channel></rss>