ComboBox Operation

  • Thread starter Thread starter Developer Dude
  • Start date Start date
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...
 

Similar threads

D
Replies
0
Views
80
Developer Dude
D
D
Replies
0
Views
90
Developer Dude
D
R
Replies
0
Views
144
roger.breton
R
Back
Top