Outlook 2k3 Script: Ordering a combo

N

news.microsoft.com

Hi all,

I've a custom combo in personal Task form, I add to this combo Fullname
extracted from my Contact folder using

Mycombo.addItem "Sting"

Q: How can I order this combolist in alpabetical Order

Tks
 
K

Ken Slovak - [MVP - Outlook]

There's no Sort method for an MS Forms 2.0 combobox, so you'll have to get
the list of items in the combobox and sort them using your favorite sorting
method and then clear and re-populate the combobox with the sorted list.
 
Top