Hi,
Try binding the selected value of your combobox the column in the datatable
whose changes you want reflected in your control.
ComboBox1.DataBindings.Add _
(New Binding("SelectedValue", myDataSet,
"myDataTable.myDataColumnName"))
Also, when binding a combobox, set the display and value members BEFORE
setting the dataSource. This prevents a firing of the selectedIndex changed
event and gives a performance boost.
JT

Signature
John
> Hi
>
[quoted text clipped - 13 lines]
> Any help?
> thanks