TwwDBComboBox replacement
Pentti Pohjonen

Hi All,
I'm moving application done in Delphi 4 to 2007 and during
conversion trying to minimize number of different component
packages used.
I have used TwwDBComboBox a lot and find it hard to replace
without considerable rewriting.
Using TwwDBComboBox lets me define both item and value
at same line making code more readable and easier to debug,
no need to separate Items and Values.
Example:
cboTest.Items.Clear;
cboTest.Items.Add('Item 1'+#9+'1');
cboTest.Items.Add('Item 2'+#9+'2');
cboTest.Items.Add('Item 3'+#9+'3');
cboTest.ApplyList;
Any ideas how to replace this component ?
TIA
Pentti Pohjonen