Does anyone know if or how you can pass multiple arrays into COM methods by ref?
At the moment I am declaring them as:
$val = array( ... );
$ref = new VARIANT( VT_ARRAY ¦ VT_BYREF );
Object->Method( $val, $ref );
Then trying to access them via:
$ref->value[ x ];
I found some posts from a year or so back suggesting it wasn't possible, I am assuming (read hoping) that that is not still the case.
Cheers,
asp