Avatar

Not applicable

Also try all.item(i) instead of all that string referencing.

For instance:

xfa.resolveNode("SubformPropCoverages.SubformInlandMarine[" + i + "].SubformRVDesc.TableRVDetails.RowRVD etails[" + j + "]").TxtYear.rawValue

can be

SubformPropCoverages.SubformInlandMarine.all.item(i).SubformRVDesc.TableRVDetails.RowRVD etails.all.item(j).TxtYear.rawValue;

Never tried it multi-dimensionally like that but just thought I'd put it out there.

Kyle