I am loading values into a combo box at load of the app. I have a clear button on my form that I want to clear everything on the form (including any text in these combo boxes). The problem is that I have it so the combo boxes are the style of 2 (Drop down list). I don't want users to be able to type anything in so they can just select what is there. If I say cboIn.text = "" it will break because the text prop is read only. If I do a cboIn.clear, it will clear all fo the contents in the drop down list. I just want it to clear what is in the text prop. Any thoughts?