Not sure what I am doing wrong but let me try to explain my issue. I have a single combobox on my form that I use to load external settings. If I load, lets say, 100 settings in to this combobox then I clear the combobox via Combobox1.items.clear(), then try to reload a different set of settings that has a far less overall count, the combobox will not load the items and the dropdownlist will be massive but blank.
NOW, if I load the settings that have far less then clear and load the settings with significantly more settings, then it loads just fine.
My combobox is set to dropdownlist and so far I have tried this:
Combobox1.items.clear()
Combobox1.Refresh()
Combobox1.SelectedIndex = -1
By themselves and used in conjuntion with one another. Nothing I have tried has resolved this. Anyone else had this issue or know what is causing this issue so I can properly fix it?