Clear Selections of a Combobox
If you use: ComboBox1.ListIndex = -1
with no list items then there will be no effect. This is a problem if you're dynamically loading the items. Use: ComboBox1.Value = Null
to clear the value as mentioned above.
Listbox.Value=null
should do the trick.