P
plutoplanet
Hi
Populating a ComboBox with a String() array of 100 Items takes up to 10
Seconds:
MyComboBox.DataSource = MyStrings
Doing the same within a loop is pretty much faster:
For i = lbound(mystring) to ubound(mystrings)
mycombo.items.add(mystrings(i))
next i
Is there no 3rd way?
Herwig
Populating a ComboBox with a String() array of 100 Items takes up to 10
Seconds:
MyComboBox.DataSource = MyStrings
Doing the same within a loop is pretty much faster:
For i = lbound(mystring) to ubound(mystrings)
mycombo.items.add(mystrings(i))
next i
Is there no 3rd way?
Herwig