I have a table with a column containing a single character representing what type of animal described by the record. I have a comboBox which has the Items property filled with the descriptions corresponding to each code. Example "A" = Amphibian, "C" = Coldwater fish... and so on).
What I need to ComboBox to do is display the description corresponding to the current code, when the user changes the selection, the underlying code character should be altered accordingly. Do I need to do this through code, or is there a way to set up a relationship using the ValueMember and DisplayMember properties?
If the value being mapped is an integer instead of a character, can it be done then?