I\'m trying to add items to a combo box using a data table that already has some columns but I just want one of them values into the combo box. What i\'m doing is this:
I think you need to use Display and Value members properties to work with display data.
cbReviewers.DataSource = Reviewers_table cbReviewers.DisplayMember = "ColumnNameThatContainsText" cbReviewers.ValueMember = "ColumnNameThatContainsValue"