P
plutoplanet
Hi all,
I've got an array of strings which I need to put into a combobox:
dim s() as string
s(0) = "test"
s(1) = "also"
s(2) = "three"
' right now i do it this way...
Dim i As Integer
For i = LBound(s) To UBound(s)
ComboBox.Items.Add(s(i))
Next i
---> Isn't there another way???
Herwig
I've got an array of strings which I need to put into a combobox:
dim s() as string
s(0) = "test"
s(1) = "also"
s(2) = "three"
' right now i do it this way...
Dim i As Integer
For i = LBound(s) To UBound(s)
ComboBox.Items.Add(s(i))
Next i
---> Isn't there another way???
Herwig