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.....
...shows the first item in the list, but...VB Code:
Me.ComboBox1.SelectedIndex = -1
... shows it blank as I want it to ...VB Code:
Me.ComboBox1.SelectedIndex = -1 Me.ComboBox1.SelectedIndex = -1![]()
Why twice? Am I doing it wrong?



Reply With Quote

