Hey,
I feel like a dummy asking this but I'm having a dumb moment.
I want to accomplish the following:
But Items is a read-only prop. How do I do this?Code:ComboBox1.Items = MyComboItemCollection
Thanks,
Ben
Printable View
Hey,
I feel like a dummy asking this but I'm having a dumb moment.
I want to accomplish the following:
But Items is a read-only prop. How do I do this?Code:ComboBox1.Items = MyComboItemCollection
Thanks,
Ben
And the answer is:
Thanks anyways!Code:ComboBox1.Items.AddRange(MyArrayOfComboItems)
-Ben