I
Ian
I'm having problems passing a multidimensional array to a function. With
the below code, I'm told that a 2 dimensional array cannot be converted to a
1 dimensional array. Is there something I'm not doing correctly?
Dim myArray(2,2) as string
myFunction(myArray)
Private Function myFunction(ByRef myArray() as string)
' changes to the array done here
End Function
the below code, I'm told that a 2 dimensional array cannot be converted to a
1 dimensional array. Is there something I'm not doing correctly?
Dim myArray(2,2) as string
myFunction(myArray)
Private Function myFunction(ByRef myArray() as string)
' changes to the array done here
End Function