View Single Post
Old Jun 22nd, 2005, 1:21 PM   #3
fabricioz
Newbie
 
Join Date: Jun 2005
Posts: 1
Rep Power: 0 fabricioz is on a distinguished road
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.
fabricioz is offline   Reply With Quote