Thema
:
Delphi
Prüfen ob Kategorie schon in Combobox existiert!
Einzelnen Beitrag anzeigen
Dax
(Gast)
n/a Beiträge
#
3
Re: Prüfen ob Kategorie schon in Combobox existiert!
10. Apr 2005, 17:28
markieren
Delphi-Quellcode:
if
ComboBox1.Items.IndexOf(SomeString) = -1
then
ComboBox1.Items.Append(SomeString);
Zitat