Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi Prüfen ob Kategorie schon in Combobox existiert! (https://www.delphipraxis.net/43918-pruefen-ob-kategorie-schon-combobox-existiert.html)

Kidix 10. Apr 2005 16:26


Prüfen ob Kategorie schon in Combobox existiert!
 
Hi,

ich hab jetzt z.B. mehrere Items in einer Combobox!

abc1
abc2
abc3

so, jetzt bekomm ich von einer funktion nen String übergeben z.B. abc2 und möchte schauen ob das schon als item im combobox vorhanden ist. wenn nicht vorhanden hinzufügen, ansonsten lassen!

Kidix

Markus 10. Apr 2005 16:27

Re: Prüfen ob Kategorie schon in Combobox existiert!
 
Das geht mit IndexOf()...

Dax 10. Apr 2005 16:28

Re: Prüfen ob Kategorie schon in Combobox existiert!
 
Delphi-Quellcode:
if ComboBox1.Items.IndexOf(SomeString) = -1 then
  ComboBox1.Items.Append(SomeString);


Alle Zeitangaben in WEZ +1. Es ist jetzt 02:32 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz