I am using currently the following code to populate a combobox:
combobox.DataSource = datatable; combobox.DisplayMember = \"Auftragsnummer\"; combobox.ValueM
You can't have multiple columns. Though you can have concatenation of multiple fields as Display Member
Check out: How do I bind a Combo so the displaymember is concat of 2 fields of source datatable?