|
you can try this:
Dim comboStringArray() As String
comboStringArray = Split(comboString, "|")
you defined the var comboStringArray like a constant array "dim array(0 to 100) as string" but the split method returns a dynamic array, you must define the array like a dynamic array.
|