Friends
I need to know in a VBScript how to do I call a method with 2 parameters by reference.
I tried call

Object = CreateObject(ActiveX.function)
and then
Object.method (ByRef array1, ByRef array2) and it did not work.

I need to pass this by reference only because the method will update the array information based on some validation.

Would appreciate any help

Thanks