I have some combo-boxes that are set up as drop down lists, and the user can pick a number in them. I also have a Clear button that should clear the text from the combo boxe
This worked for me when I added ComboBox.Focus()
ComboBox.Focus()
ComboBox.Items.Clear(); ComboBox.ResetText(); ComboBox.Focus();