Zitat:
if ComboBox1.Text:='x' then
Zuweisung oder Vergleich?
Delphi-Quellcode:
if Key = Char(VK_RETURN) then begin
i := ComboBox1.Items.IndexOf(ComboBox1.Text);
if i >= 0 then
ComboBox1.ItemIndex := i;
end;
bzw.
Delphi-Quellcode:
if Key = Char(VK_RETURN) then
ComboBox1.ItemIndex := ComboBox1.Items.IndexOf(ComboBox1.Text);
Schreibarbeit? Die CB kennt doch ihre Einträge, also fragt man sie einfach.