Subject IB_LookupCombo OnChange problem
Author mmenaz@lycosmail.com
I use a IB_LookupCombo to choose a record from the lookup table and
put some fields values from it in the "base" table for further
editing.
I've written code like this to do so:

procedure TfrmInsChiamate.IB_LookupCombo1Change(Sender: TObject);
begin
with dmMain do
begin
qryChiamate_Testate['DESCRIZIONE1'] :=
qryLkCodChiamata['DESCRIZIONE1'];
end;
end;

Unfortunately adding this code makes the lookupcombo not to scroll,
i.e. you can not further choose another item in the list! Is it a bug
or I'm missing something?

Thanks

Marco Menardi