There are several ways to transfer arrays as parameters:
a)
As an array
b)Code:Call a(yourarray()) Function a(YourArray())
As an variant
c)Code:call b(yourarray()) Function b(YourVariant)
As an array of parameters
Code:call b(a,b,c,d) Function b(Paramarray YourArray())





Reply With Quote