
Passing arrays in a sub/function
Quote:
>What is the syntax in passing arrays to procedures. I assumed that they are
>passed by referance, but when I try to pass the array I get the following
>compilation error: Byref argument type mismatch.
Public Sub Test(saTest() As String)
and to call it...
Test x()
Frank Carr