I have a VB.NET Windows Forms application that contains a combo box. Initially I have set the box's text property to "Select Department".
After the user selects an entry from the list, the text field of the box shows the item the user selected. After my code handles the processing for the item the user selected I would like to change the text field back to the original phrase ... "Select Department" ... but changing myCOMBO.Text has no effect. Still shows the last selected item.
How can I replace that selected item text?