ParamArray is a special purpuse constructin for a list of optional parameters. If you are passing a string array
Dim aryStr() As String
Redim aryStr(whatever)
then use
Function func1(array1() as string)
.
.
.
func2(array1()) ' It is a string array.
.
end Function
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.