Zitat von
Grolle:
Der Eintrag wird dann aber nicht automatisch übernommen.
Natürlich nicht.
Initialisiere die DBComboBox.Items im Form.OnCreate() und setze Sorted auf TRUE. Im Dataset.OnAfterPost() pack das rein:
Delphi-Quellcode:
with DBComboBox do
if Items.IndexOf(Text) = -1 then
Items.Add(Text);
marabu