G Guest Mar 20, 2005 #1 Whenever I change an item in my combobox, it doesn't resort the items. If I add an item, then it sorts ok. Is this normal?
Whenever I change an item in my combobox, it doesn't resort the items. If I add an item, then it sorts ok. Is this normal?
H Herfried K. Wagner [MVP] Mar 20, 2005 #2 Dennis said: Whenever I change an item in my combobox, it doesn't resort the items. If I add an item, then it sorts ok. Is this normal? Click to expand... I am able to reproduce this behavior. Quick workaround: \\\ With Me.ComboBox1 .Items(2) = "ZZZZ" .Sorted = False .Sorted = True End With ///
Dennis said: Whenever I change an item in my combobox, it doesn't resort the items. If I add an item, then it sorts ok. Is this normal? Click to expand... I am able to reproduce this behavior. Quick workaround: \\\ With Me.ComboBox1 .Items(2) = "ZZZZ" .Sorted = False .Sorted = True End With ///
G Guest Mar 20, 2005 #3 Thanks. I thought I'd tried that but apparently I only reset the sorted property True and didn't set it to False first.
Thanks. I thought I'd tried that but apparently I only reset the sorted property True and didn't set it to False first.
H Herfried K. Wagner [MVP] Mar 20, 2005 #4 Dennis said: I thought I'd tried that but apparently I only reset the sorted property True and didn't set it to False first. Click to expand... That's what I tried too ...
Dennis said: I thought I'd tried that but apparently I only reset the sorted property True and didn't set it to False first. Click to expand... That's what I tried too ...