If I have an array that looks something like this.

Dim UserArray as Variant
UserArray = Array ("me", "you", "and him")



Can I add all three entries to a combobox at the same time? So instead of this:

mycontrol.AddItem (UserArray(0))
mycontrol.AddItem (UserArray(1))
mycontrol.AddItem (UserArray(2))



It would look more like this:

mycontrol.AddItem (UserArray(0 - 2))



Is something liek this possible? Thanks...