Data Table Help

  • Thread starter Thread starter James
  • Start date Start date
J

James

I have a data table with two columns ID and Name

I need to find the ID value where the name = cboName.SelectedItem

how do I do that?

Thanks!
 
James said:
I have a data table with two columns ID and Name

I need to find the ID value where the name = cboName.SelectedItem

how do I do that?

Thanks!
If you have this data in cboName then the ID value should be in
cboName.SelectedValue
 
Back
Top