I am getting data from database to populate my combo box, so lets say i have data like this:
|Column ID | Column Name |
| 1 | Item1 |
| 2 | Item2 |
| 3 | Item3 |
So for now i am getting Column Name
and populating combo box with it but now from some other function i am changing combo box selected item and what i want is while populating combo box to assign ID from database so when i say to change combobox selected item to ID 3, it change to Item 3
.DisplayMember = "Name"
and.ValueMember = "Id"
– Ňɏssa Pøngjǣrdenlarp