0
Dim arrS(1000, 6) As String
Sub FromHere()
'(I've already filled the array and just want to pass it from here):
Call ToThere(someArray)
End Sub
Sub ToThere(someArray)
MsgBox "And I want to use it: " & someArray(2, 2)
End Sub
私がしようとしていることはすべて、レッドラインでエディタから抜け出せません。引数として2D配列を渡します:
これを宣言してどのように宣言する必要がありますか?