hi -
do you guys know how to return an array from a function?
I've tried doing functionName = myArray, but that doesn't seem to return the array to the calling function (IsArray fails in the calling function, but succeeds in the called function.)
ex:
function myfunction()
dim myArray(25)
...
myfunction = myArray
end function
if isarray(myfunction) then '<-- this always fails
any ideas?
leo
do you guys know how to return an array from a function?
I've tried doing functionName = myArray, but that doesn't seem to return the array to the calling function (IsArray fails in the calling function, but succeeds in the called function.)
ex:
function myfunction()
dim myArray(25)
...
myfunction = myArray
end function
if isarray(myfunction) then '<-- this always fails
any ideas?
leo