<?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[Memo1 Text und Variable ausgeben...]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich weiss leider auch diesmal nicht wo mein hacken liegt...</p>
<pre><code class="language-cpp">for (i=1; i&lt;ListBox1-&gt;Items-&gt;Count; i++)
{
b++;
lol-&gt;LoadFromFile(ListBox1-&gt;Items-&gt;Strings[i]);
Memo1-&gt;Lines-&gt;Add(&quot;FileCounter: &quot;+b);
Memo1-&gt;Lines-&gt;AddStrings(lol);
}
Memo1-&gt;Lines-&gt;SaveToFile(&quot;C:\\&quot;+DBText1-&gt;Field-&gt;DisplayText+&quot;.txt&quot;);
}
</code></pre>
<p>Memo1-&gt;Lines-&gt;Add(&quot;FileCounter: &quot;+b); &lt;--</p>
<p>Hier liegt der Fehler bei der ausgabe erscheint dann</p>
<p>ileCounter:<br />
leCounter:</p>
<p>Wieso wenn ich vorher die Schriff weg mache also<br />
Memo1-&gt;Lines-&gt;Add(b);</p>
<p>klappt alles wunderbar rechnet er mit +b irgendwie oder habe ich ein flüchtigkeitsfehler <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/136565/memo1-text-und-variable-ausgeben</link><generator>RSS for Node</generator><lastBuildDate>Sun, 02 Aug 2026 03:28:16 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/136565.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 Feb 2006 13:08:49 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Memo1 Text und Variable ausgeben... on Sat, 11 Feb 2006 13:08:49 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich weiss leider auch diesmal nicht wo mein hacken liegt...</p>
<pre><code class="language-cpp">for (i=1; i&lt;ListBox1-&gt;Items-&gt;Count; i++)
{
b++;
lol-&gt;LoadFromFile(ListBox1-&gt;Items-&gt;Strings[i]);
Memo1-&gt;Lines-&gt;Add(&quot;FileCounter: &quot;+b);
Memo1-&gt;Lines-&gt;AddStrings(lol);
}
Memo1-&gt;Lines-&gt;SaveToFile(&quot;C:\\&quot;+DBText1-&gt;Field-&gt;DisplayText+&quot;.txt&quot;);
}
</code></pre>
<p>Memo1-&gt;Lines-&gt;Add(&quot;FileCounter: &quot;+b); &lt;--</p>
<p>Hier liegt der Fehler bei der ausgabe erscheint dann</p>
<p>ileCounter:<br />
leCounter:</p>
<p>Wieso wenn ich vorher die Schriff weg mache also<br />
Memo1-&gt;Lines-&gt;Add(b);</p>
<p>klappt alles wunderbar rechnet er mit +b irgendwie oder habe ich ein flüchtigkeitsfehler <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/991512</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991512</guid><dc:creator><![CDATA[azad187]]></dc:creator><pubDate>Sat, 11 Feb 2006 13:08:49 GMT</pubDate></item><item><title><![CDATA[Reply to Memo1 Text und Variable ausgeben... on Sat, 11 Feb 2006 13:40:19 GMT]]></title><description><![CDATA[<p>Ähh, schon mal die unterschiedlichen Datentypen berücksichtigt:</p>
<pre><code class="language-cpp">Memo1-&gt;Lines-&gt;Add(&quot;FileCounter: &quot;+IntToStr(b));
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/991536</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991536</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Sat, 11 Feb 2006 13:40:19 GMT</pubDate></item><item><title><![CDATA[Reply to Memo1 Text und Variable ausgeben... on Sat, 11 Feb 2006 14:09:03 GMT]]></title><description><![CDATA[<blockquote>
<p>Memo1-&gt;Lines-&gt;Add(b);</p>
</blockquote>
<p>Hier ist die Methode Add in der Lage den int nach String zu casten</p>
<blockquote>
<p>Memo1-&gt;Lines-&gt;Add(&quot;FileCounter: &quot;+b);</p>
</blockquote>
<p>Hier bekommt die Methode 2 Typen (String und int) vorgesetzt. Das geht nicht mehr.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991552</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991552</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:09:03 GMT</pubDate></item><item><title><![CDATA[Reply to Memo1 Text und Variable ausgeben... on Sat, 11 Feb 2006 18:20:54 GMT]]></title><description><![CDATA[<p>danke Problem behoben <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/991729</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991729</guid><dc:creator><![CDATA[azad187]]></dc:creator><pubDate>Sat, 11 Feb 2006 18:20:54 GMT</pubDate></item></channel></rss>