how can i get the result of the split function in a variable?
i.e.:
Private Sub Form_Load()
Dim testje(10)
Dim mystring(10) As String
Dim i
i = 0
mystring(0) = "12,222,+,44,121"
For i = 0 To 4
testje(i) = Split(mystring(0), Chr(44))
Next i
End Sub

what am i doing wrong, testje(i) is not being filled..