|
Check out this field and put it in the datatable, I put it in the dataset, it can be pulled, and then bound
this.listBox1.DataSource = ds.Tables[0];
this.listBox1.ValueMember = "Field name 1";//For example ID
this.listBox1.DisplayMember = "Field name 2";//For example Name |
|