I\'d like to bind a ComboBox to a DataTable (I cannot alter its original schema)
ComboBox
DataTable
cbo.DataSource = tbldata; cbo.DataTextField = \"Na
You can register the combo binding event and iterate the items, setting each item text to the desired fields using the combobox item data item.