Bound combobox items refers to different field items
问题 I got a bounded combobox to a group name in vb.net. i can view in the drop down items of the combobox the set of GROUP NAMES. but when i do an insert or update query, i need to make the selected group name refers to the GROUP NUMBER. I don't want to store letters in the database, instead i prefer numbers. how can i do that?! Here is my code so far : cmd1.Parameters.AddWithValue("@group", DirectCast(Additemcombobox.SelectedItem, DataRowView).Item("GroupName")) Storing the group name in