I have a COM object with a method which accepts a variant param. This param
should be a multi-dimension (string) array. Whenever I attempt to call this
method I get a type mismatch error.
My script code looks something like:
Dim values(2,2)
values(0,0) = "A"
values(0,1) = "A.1"
values(1,0) = "B"
values(1,1) = "B.1"
myObject.execute values
Can anyone help???