Hello,
I got a slight problem...
I would like to pass a two-dimensional array from a sub to another sub.
Something like this:
Dim matrix(1 to 10, 1 to 10)
Sub CommandButton1_click()
...
Call solve(matrix())
...
End sub
Sub solve(Paramarray matrix() as Variant)
...
...
End sub
It doesn't work...?????
Does anyone have a solution?
Kind regards,
Gertjan


Reply With Quote
