I have a combo box which i have set the Valuemember to a column. What seems to be showing up is the column name, not the data value. Am I doing this wrong?
Thanks,
MikeD
Here is what I did to check it.
private void cbQuery_SelectedIndexChanged(object sender, EventArgs e) {
if (this.cbQuery.Text == "")
return;
MessageBox.Show("vm=" + this.cbQuery.ValueMember.ToString());
}