Do somebody know if is possible to access a property in a COM object that is an array.
For example:
The property named Values in an array that is defined in the COM as Set Property Values(Index as Integer) as String
And in PHP when I try to access this property I use $myCom->Values[$index] = "xx";
But it doesn't work, an error comes to the web page. I also used $myCom->Values($index) = "xx"; but it doesn't work too.
I realy appreciate if someone can give me a heand on this.
Thanks.