If this is related to the ActiveX example you posted previously, does the data get inserted into your array correctly? The array has to be a 2 dimensional array. I.e. -
myArray =
[ ["row 0 col 0", "col 1"],
["row 1 col 0", "col 1"]]
You can use the length property of an array to work out how many rows and columns you have.
http://www.devguru.com/Technologies/Ecmascript/Quickref/array.html
This topic is archived.