Kann ich dann wie folgt alle Schritte mit den Strings in der CB durchgehen?
Delphi-Quellcode:
if (CategoryComboBox.ItemIndex = -1) and (CategoryComboBox.Text <> '') and (CategoryComboBox.Items.IndexOf(CategoryComboBox.Text) = -1) then
begin
showmessage('Manuell reingeschrieben, String sonst in der CB nicht vorhanden');
end else if (CategoryComboBox.ItemIndex = -1) and (CategoryComboBox.Items.IndexOf(CategoryComboBox.Text) <> -1) then
begin
showmessage('Manuell reingeschrieben, String in der CB vorhanden');
end else if CategoryComboBox.ItemIndex <> -1 then
begin
showmessage('String in der CB ausgewählt');
end else showmessage('CB nicht angefasst!');