ComboBox Sort

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
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?

I am able to reproduce this behavior. Quick workaround:

\\\
With Me.ComboBox1
.Items(2) = "ZZZZ"
.Sorted = False
.Sorted = True
End With
///
 
Thanks. I thought I'd tried that but apparently I only reset the sorted
property True and didn't set it to False first.
 
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.

That's what I tried too :-)...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top