Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: Combo Box Neues Item
5. Dez 2003, 10:59
Sagen wir mal, daß in strItem Dein neuer Wert ist, dann:
Delphi-Quellcode:
if ComboBox1.Items.IndexOf(strItem) < 0 then
ComboBox1.Items.Add(strItem);
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|