I wounder if there is a way to get the values from array's dimensions, without knowing how many dimensions the array has.
I know how to do if I know the array's dimensions, but not a clue if I don't
know the array's dimensions.
Sub getArr(ByVal arr)
Dim s as String
Dim i, j As Integer
For i = 0 To arr.rank
For j = 0 To arr.getupperbound(1)
s = s + arr(i, j) + " "
Next
s = s + vbCrLf
End If
Next
End Sub
I hope someone can give me a clue.
Fia

Add Reply





MultiQuote

| 


