selena1
Programmer
- Apr 7, 2003
- 69
Does anybody know how to enable that in DBLookupComboBox you can insert new value that don't exists in a list of values wich you get setting properties ListSource and ListField.
I have used DBComboBox component and next code:
while not Query1.Eof do
begin
DBComboBox1.Items.Add(Query1..FieldByName('State').AsString);
Query1.Next;
end;
Is there any better way?
THANKS!
I have used DBComboBox component and next code:
while not Query1.Eof do
begin
DBComboBox1.Items.Add(Query1..FieldByName('State').AsString);
Query1.Next;
end;
Is there any better way?
THANKS!