
Zitat von
DeddyH:

Zitat von
Ultimator:
Delphi-Quellcode:
for i := 0 to ListBox1.Items.Count - 1
gesamt := gesamt + ListBox1.Items[i];
Ähm, Du meintest sicher
Delphi-Quellcode:
for i := 0 to ListBox1.Items.Count - 1 do
gesamt := gesamt + StrToInt(ListBox1.Items[i]);

Wie auch immer

Ich bin so gut wie kein Delphi mehr gewohnt, mache fast alles mittlerweile in C# *rausred*^^
Julian J. Pracht