I am creating a Teststand sequence that parses through the ResultsList and creates my own format of text reporting file. (I need to do this because our database needs the data in a very specific text format). I am trying to copy a Result from a subsequence back up into the first level of the ResultList. (see attached screen shot for the details). I use the following statement:
Locals.TestResultListLocalCopy[3] = Locals.TestResultListLocalCopy[1].TS.SequenceCall.ResultList[0]
When I execute the sequence I get the following error for the above line:
-17321; Variable or property types do not match or are not compatible.
As you can see from the screen shot that I took at run-time, both of the array elements are of type Result, so why do I get the type error?
Thanks for any help - LAW