How to populate repeating list using VBScript?

B

Barry Prentiss

I am reading mutliple rows with multiple fields from a form library and need
to display the results in a repeating list...
Is it possible to populate an InfoPath '03 repeating list using VBScript?
Thx,
Barry
 
S

Shiva (GGK Tech)

Hello,

Here is the code to get repeating node,
var repeatingNodes = XDocument.DOM.selectNodes("repeating node XPath");
 
Top