<?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[ListBox1 -&amp;gt;Prfen und ausgeben.]]></title><description><![CDATA[<p>Wenn es den eintrag in der ListBox1 gibt<br />
soll er dentext in listbox2 übernehmen wenn nich soll er hallo ausgeben.<br />
Was habe ich falsch gemacht</p>
<pre><code class="language-cpp">AnsiString  name = Edit1-&gt;Text;
AnsiString  hallo= ListBox1-&gt;Items-&gt;IndexOf(name);

if (ListBox1-&gt;Items-&gt;IndexOf(name) == ListBox1-&gt;Items-&gt;IndexOf(hallo))
   ListBox2-&gt;Items-&gt;Add(name);
else
    ShowMessage(&quot;Hallo&quot;);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/89268/listbox1-gt-prfen-und-ausgeben</link><generator>RSS for Node</generator><lastBuildDate>Sun, 05 Jul 2026 22:41:52 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/89268.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 18 Oct 2004 09:32:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 09:32:17 GMT]]></title><description><![CDATA[<p>Wenn es den eintrag in der ListBox1 gibt<br />
soll er dentext in listbox2 übernehmen wenn nich soll er hallo ausgeben.<br />
Was habe ich falsch gemacht</p>
<pre><code class="language-cpp">AnsiString  name = Edit1-&gt;Text;
AnsiString  hallo= ListBox1-&gt;Items-&gt;IndexOf(name);

if (ListBox1-&gt;Items-&gt;IndexOf(name) == ListBox1-&gt;Items-&gt;IndexOf(hallo))
   ListBox2-&gt;Items-&gt;Add(name);
else
    ShowMessage(&quot;Hallo&quot;);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/631350</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631350</guid><dc:creator><![CDATA[~smirnofe]]></dc:creator><pubDate>Mon, 18 Oct 2004 09:32:17 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 09:43:54 GMT]]></title><description><![CDATA[<p>Kommentier bitte mal Deine Zeilen. Was sollen die einzelnen Code-Zeilen bewirkten?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631364</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631364</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 18 Oct 2004 09:43:54 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 09:55:24 GMT]]></title><description><![CDATA[<p>Warum ist die Variable &quot;hallo&quot; (super Name!) vom Typ AnsiString? Bzw. schau Dir mal an, was IndexOf() zurückgibt?<br />
Was macht denn Deiner Meinung nach IndexOf()? (In beiden Fällen Hilfe konsultieren)<br />
Du kannst Dir die Variable &quot;hallo&quot; sparen. Deine if-Bedingung ist völliger Unsinn.</p>
<p>Gruß,</p>
<p>Alexander</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631373</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631373</guid><dc:creator><![CDATA[Alexander Kempf]]></dc:creator><pubDate>Mon, 18 Oct 2004 09:55:24 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 10:05:13 GMT]]></title><description><![CDATA[<p>Och Alexander, warum nimmst Du mir dann jeglichen Spaß... <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<p>EDIT: Ich bin der Meinung, wenn man ihm das alles vorkaut, wird er nie was lernen...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631378</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631378</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 18 Oct 2004 10:05:13 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 10:11:11 GMT]]></title><description><![CDATA[<p>Ich habe es schon es gehört so.</p>
<pre><code class="language-cpp">AnsiString  name = Edit1-&gt;Text;
AnsiString  hallo= ListBox1-&gt;Items-&gt;IndexOf(name);

if (ListBox1-&gt;Items-&gt;IndexOf(hallo) !=  ListBox1-&gt;Items-&gt;IndexOf(name))
   ListBox2-&gt;Items-&gt;Add(Edit1-&gt;Text);
else
    ShowMessage(&quot;Hallo&quot;);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/631390</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631390</guid><dc:creator><![CDATA[~smirnofe]]></dc:creator><pubDate>Mon, 18 Oct 2004 10:11:11 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 10:28:46 GMT]]></title><description><![CDATA[<p>ich habe mich verttan.<br />
tschuldigung.<br />
Wenn ich jetzt a eingebe sollen alle einträgr ausgegeben werden die a als anfangsbuchstaben enthalten also wird affe und adonis angezeigt.</p>
<p>Ich habe mich in der hilfe umgeschaut und es sol irgendwie mit * funktionieren.</p>
<p>Danke das für eure hilfe.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631402</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631402</guid><dc:creator><![CDATA[~smirnofe]]></dc:creator><pubDate>Mon, 18 Oct 2004 10:28:46 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 10:45:46 GMT]]></title><description><![CDATA[<p>Aha! Jetzt wird das schon klarer <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="😕"
    /><br />
Hast Du meinen Beitrag eigentlich gelesen?</p>
<p>Gruß,</p>
<p>Alexander</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631417</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631417</guid><dc:creator><![CDATA[Alexander Kempf]]></dc:creator><pubDate>Mon, 18 Oct 2004 10:45:46 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 11:01:22 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">ListBox2-&gt;Items-&gt;Clear();
AnsiString  name = Edit1-&gt;Text;
AnsiString  hallo= ListBox1-&gt;Items-&gt;IndexOf(name);//der name ist egal ich habe es zur besseren orientierrung gemacht

if (ListBox1-&gt;Items-&gt;IndexOf(name) == ListBox1-&gt;Items-&gt;IndexOf(hallo)) //wenn das entsprechende wort (hallo) mit dem (name) das in das edit feld eingegeben wurde  übereinstimmt  wird es in die listbox2 übertragen 
   ListBox2-&gt;Items-&gt;Add(name);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/631431</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631431</guid><dc:creator><![CDATA[~smirnofe]]></dc:creator><pubDate>Mon, 18 Oct 2004 11:01:22 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 11:22:40 GMT]]></title><description><![CDATA[<p>Alexander Kempf schrieb:</p>
<blockquote>
<p>Hast Du meinen Beitrag eigentlich gelesen?</p>
</blockquote>
<p>Gruß,</p>
<p>Alexander</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631453</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631453</guid><dc:creator><![CDATA[Alexander Kempf]]></dc:creator><pubDate>Mon, 18 Oct 2004 11:22:40 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 11:31:05 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/18157">@Alexander</a>: Ich glaube hier ist jegliche weitere Hilfe verschwendete Zeit... Gelesen hat er es wohl, nur mit dem verstehen klappt das nicht so ganz...</p>
<p>@smirnofe: LERNE ERSTMAL DIE GRUNDLAGEN!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631461</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631461</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 18 Oct 2004 11:31:05 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 11:35:19 GMT]]></title><description><![CDATA[<p>wiso ansi string:<br />
weil es soll halt ein text sein.<br />
meiner meinungnach kann man mit indexof() die position des entsprechenden wortes finden wieso?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631465</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631465</guid><dc:creator><![CDATA[~smirnoffe]]></dc:creator><pubDate>Mon, 18 Oct 2004 11:35:19 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 11:38:59 GMT]]></title><description><![CDATA[<p>~smirnoffe schrieb:</p>
<blockquote>
<p>weil es soll halt ein text sein.</p>
</blockquote>
<p>Und warum?</p>
<p>~smirnoffe schrieb:</p>
<blockquote>
<p>meiner meinungnach kann man mit indexof() die position des entsprechenden wortes finden wieso?</p>
</blockquote>
<p>Stimmt und weshalb vergleichst Du dann die Position der Position von einem Text mit irgendwas? Welchen Sinn sollte das haben?</p>
<p>Gruß,</p>
<p>Alexander</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631468</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631468</guid><dc:creator><![CDATA[Alexander Kempf]]></dc:creator><pubDate>Mon, 18 Oct 2004 11:38:59 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 12:00:39 GMT]]></title><description><![CDATA[<p>es funktioniert auf jeden fall.<br />
es schien mir am eifachsten zu sein da ich später es eigentlich3 listboxn gibt<br />
1 namen der hersteller<br />
2 beliebtestes produkt<br />
3 ergebnisse der suche</p>
<p>wenn ich jetzt das produkt windows suche soll aber in der liste ergebniss microsoft<br />
erscheinen.<br />
wenn ich jetzt auf microsoft clicke in der listbox3 soll in einem label microsoft un word erscheinen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631488</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631488</guid><dc:creator><![CDATA[~smirnofe]]></dc:creator><pubDate>Mon, 18 Oct 2004 12:00:39 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 12:04:36 GMT]]></title><description><![CDATA[<p>so wenn ich jetzt a eingebe sollen alle einträgr ausgegeben werden die a als anfangsbuchstaben enthalten also wird z.B. affe und adonis angezeigt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631493</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631493</guid><dc:creator><![CDATA[~smirnofe]]></dc:creator><pubDate>Mon, 18 Oct 2004 12:04:36 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 12:12:46 GMT]]></title><description><![CDATA[<p>~smirnofe schrieb:</p>
<blockquote>
<p>es funktioniert auf jeden fall.</p>
</blockquote>
<p>Die Begründung ist so ziemlich meine Lieblingsbegründung (für oftmals schlechtes Design).<br />
Ehrlich gesagt, bin ich ziemlich erstaunt, dass bei Deiner if-Bedingung irgendetwas sinnvolles herauskommt.<br />
Für mich sieht die Bedingung eher sinnlos aus. Dein Kommentar passt auf jeden Fall nicht zu dem, was Dein Programm tut.</p>
<p>Gruß,</p>
<p>Alexander</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631509</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631509</guid><dc:creator><![CDATA[Alexander Kempf]]></dc:creator><pubDate>Mon, 18 Oct 2004 12:12:46 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 12:22:34 GMT]]></title><description><![CDATA[<p>wenn ich jetzt das produkt windows suche soll aber in der liste ergebniss microsoft<br />
erscheinen.<br />
wenn ich jetzt auf microsoft clicke in der listbox3 soll in einem label microsoft un word erscheinen.<br />
→wie mache ich das↑??</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631518</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631518</guid><dc:creator><![CDATA[smirnofe]]></dc:creator><pubDate>Mon, 18 Oct 2004 12:22:34 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 12:23:44 GMT]]></title><description><![CDATA[<p>alexander außerdem hätte ich keine idee aus einer listbox nach namen ander zu suchen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631519</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631519</guid><dc:creator><![CDATA[smirnofe]]></dc:creator><pubDate>Mon, 18 Oct 2004 12:23:44 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 13:00:36 GMT]]></title><description><![CDATA[<p>Joe_M. schrieb:</p>
<blockquote>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/18157">@Alexander</a>: Ich glaube hier ist jegliche weitere Hilfe verschwendete Zeit...</p>
</blockquote>
<p>@Joe_M.: Ich befürchte, Du hattest recht...</p>
<p>Gruß,</p>
<p>Alexander</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631562</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631562</guid><dc:creator><![CDATA[Alexander Kempf]]></dc:creator><pubDate>Mon, 18 Oct 2004 13:00:36 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 14:03:49 GMT]]></title><description><![CDATA[<p>ihr könntet mir wenigstens einen tipp geben</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631646</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631646</guid><dc:creator><![CDATA[smirnofe]]></dc:creator><pubDate>Mon, 18 Oct 2004 14:03:49 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 14:46:10 GMT]]></title><description><![CDATA[<p>Die Tipps sind doch schon da... Mit Fähnchen und Beschilderung. Du verstehst Sie nur nicht, weil Du die Grundlagen nicht beherrschst!</p>
<p>Ergo:<br />
<strong>LERN DIE C / C++ GRUNDLAGEN!!!!!!!</strong></p>
<p>Joe_M.</p>
<p>P.S. Oder springst Du auch erst aus dem Flugzeug und machst Dir dann unterwegs Gedanken über die Handhabung des Fallschirms? (Probiers bitte nicht aus, das geht mit ziemlicher Sicherheit auch schief...)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631694</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631694</guid><dc:creator><![CDATA[zufaulzumeinloggen]]></dc:creator><pubDate>Mon, 18 Oct 2004 14:46:10 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Mon, 18 Oct 2004 16:10:12 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/9494">@Joe</a> und Alexander: Servus ihr zwei. Musste gerade erst mal laut lachen wie ihr so geantwortet habt. <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="😕"
    /> Lustig, er scheint bisher nur Macros in Excel aufgezeichnet zu haben. <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="😃"
    /> OK, OK jeder fängt mal an...</p>
<p>@smirnofe: Alexander hat übrigens recht, Du kannst Dir die Variable hallo wirklich sparen!!! Falls Du mein Posting jetzt liest...</p>
<p>Gruß Mirko</p>
]]></description><link>https://www.c-plusplus.net/forum/post/631758</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/631758</guid><dc:creator><![CDATA[Nontschew]]></dc:creator><pubDate>Mon, 18 Oct 2004 16:10:12 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Tue, 19 Oct 2004 09:30:42 GMT]]></title><description><![CDATA[<p>ist ja schon gut ihr musst ja auf dem (&quot;hallo&quot;)nicht so rumhacken. <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="🙄"
    /><br />
Ich habe ja eingesehen das es nicht nötig ist.<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /> aber trotzdem wie forme ich das so um das wenn ich a angebe alle einträgte die mit a anfangen aufgelistet werden also a,ab und abba. <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>
<pre><code class="language-cpp">Nur so mal zum gag woher kommt ihr eigentlich
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/632218</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/632218</guid><dc:creator><![CDATA[~smirnofe]]></dc:creator><pubDate>Tue, 19 Oct 2004 09:30:42 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Tue, 19 Oct 2004 11:33:08 GMT]]></title><description><![CDATA[<p>Ich würde mir eine anständige Datenstruktur überlegen, in der ich meine Firmen und Produkte speicher (und verknüpfe) und die ListBoxen nur zum anzeigen benutzen. Dann haste auch keine Probleme das deine verknüpfungen durcheinander geraten.</p>
<p>Wenn nun im Suchfeld etwas getippt wird, kannste deine Datenstruktur durchlaufen und entsprechende Einträge anzeigen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/632319</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/632319</guid><dc:creator><![CDATA[-**xXx**-]]></dc:creator><pubDate>Tue, 19 Oct 2004 11:33:08 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Tue, 19 Oct 2004 12:33:13 GMT]]></title><description><![CDATA[<p>ich möchte es aber mit dem grep(aus der hilfe) machen. OK?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/632380</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/632380</guid><dc:creator><![CDATA[~grep]]></dc:creator><pubDate>Tue, 19 Oct 2004 12:33:13 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Wed, 20 Oct 2004 15:14:13 GMT]]></title><description><![CDATA[<p>wo lernt man den die grundlagen <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="😕"
    /><br />
ich hatte c++ in der schule, aber grundlagen haben wir nicht gelehrnt sondern sofort mit edit1-&gt;Text=(&quot;Hallo&quot;) usw<br />
Was versteht ihr überhaup unter grundlagen.<br />
könnte mir da einer unter die arme greifen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/633436</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/633436</guid><dc:creator><![CDATA[~smirnofe]]></dc:creator><pubDate>Wed, 20 Oct 2004 15:14:13 GMT</pubDate></item><item><title><![CDATA[Reply to ListBox1 -&amp;gt;Prfen und ausgeben. on Wed, 20 Oct 2004 15:47:59 GMT]]></title><description><![CDATA[<p>Syntax.. Variablendeklaration und Instanziierung... der vielgeschmähte &quot;Wie benutze ich das Hilfesystem&quot;-Kurs und und und...<br />
Teilweise auch wie Daten im Speicher abgelegt werden.. zumindest um es mal gehört zu haben.<br />
Was Zeiger sind.. Referenzen.. urgs.. Grundlagen halt.<br />
Kommt auf den einzelnen an was man als Grundlage und als weiterführenden Stoff definiert.. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/633466</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/633466</guid><dc:creator><![CDATA[MikeSPK]]></dc:creator><pubDate>Wed, 20 Oct 2004 15:47:59 GMT</pubDate></item></channel></rss>