Open GoogleCodeExporter opened 9 years ago
One work-around seems to be to use an array of arrays instead of a 2-d array.
Also, arrays seem to need to be of type Variant for this to work.
So
Dim arr(0 To 3) As Variant
arr(0) = "a"
arr(1) = "b"
arr(2) = "c"
arr(3) = "d"
works.
And
Dim arr(1 To 2) As Variant
arr(1) = Array("a", "b")
arr(2) = Array("c", "d")
works.
Original comment by walid.na...@gmail.com
on 14 Oct 2014 at 7:31
Original issue reported on code.google.com by
mheber...@gmail.com
on 15 Jan 2010 at 10:59