Say I have an array dimensioned, and I need to use it in a subprocedure, how do I define the subprocedure, and what is the syntax to pass the array?
I.E.
Dim array(12) as string
private Sub DoStuff(array here)
End Sub
and then calling the function DoStuff would be done how?
Thanks in advance


Reply With Quote

