Dynamically updating combo boxes
I have a combo box that is initialized to names. As my application runs, I can add and delete new records to an array of Objects. When I delete I really just want to add an asterisk to the end of the name (to indicate deleted) and change the entry in the combo box from name to name*. How do you change the value of a combo box entry at a specific index?

