Hergass wrote:
> Hi
> I try to create a few dynamic bound combobox controls, but as soon as i
> select a value from one of the controls, all the other controls are change to
> the value witch i've selected.
>
> how can I make each combo ack by itself?
Instead of (say)
comboBox1.Datasource = myDatasource;
comboBox2.Datasource = myDatasource;
comboBox3.Datasource = myDatasource;
do
BindingSource bs1 = new BindingSource();
bs1.Datasource = myDatasource;
comboBox1.Datasource = bs1;
BindingSource bs2 = new BindingSource();
bs2.Datasource = myDatasource;
comboBox2.Datasource = bs2;
BindingSource bs3 = new BindingSource();
bs3.Datasource = myDatasource;
comboBox3.Datasource = bs3;
--
Larry Lard
(E-Mail Removed)
The address is real, but unread - please reply to the group
For VB and C# questions - tell us which version