|
-
January 31st, 2000, 09:24 AM
#1
array
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...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|