D
Developer Dude
Guest
Hi:
I have a combobox bound to a datatable with two columns. One column is "SE_KEY" the other column is "SE_NAME".
cboSE.DataSource = bsSE
cboSE.DisplayMember = "SE_NAME"
cboSE.ValueMember = "SE_KEY"
In the SelectedValueChanged Event I want to capture the value of "SE_KEY".
cboSE.DataBindings.Add("SelectedValue", bsUS, "US_SE_KEY")
The "SE_KEY" value will be placed into "US_SE_KEY" in the main datatable.
I have spent a lot of time researching this but everything has failed so far.
Could someone please assist me? Thanks.
Continue reading...
I have a combobox bound to a datatable with two columns. One column is "SE_KEY" the other column is "SE_NAME".
cboSE.DataSource = bsSE
cboSE.DisplayMember = "SE_NAME"
cboSE.ValueMember = "SE_KEY"
In the SelectedValueChanged Event I want to capture the value of "SE_KEY".
cboSE.DataBindings.Add("SelectedValue", bsUS, "US_SE_KEY")
The "SE_KEY" value will be placed into "US_SE_KEY" in the main datatable.
I have spent a lot of time researching this but everything has failed so far.
Could someone please assist me? Thanks.
Continue reading...