Resolved: Combo box problem (its just MS being crap again...)
Hi,
I have a combo box - dropdownlist style
There are 3 items in the list
I want the combo box to be clear when the form is loaded, so that the user can select one from the list (VB6: Index = -1).
So how come.....
VB Code:
Me.ComboBox1.SelectedIndex = -1
...shows the first item in the list, but...
VB Code:
Me.ComboBox1.SelectedIndex = -1
Me.ComboBox1.SelectedIndex = -1
... shows it blank as I want it to ... :confused:
Why twice? Am I doing it wrong?