I have a repeating group which I wish to loop through to check against.
How can I (Programmatically) loop through all the nodes in a repeating
group and get access to the collection it holds?
Be good if you could post a code example on how to do this. (using
InfoPath 2007 with the new object model)
Greg
Did you try XPath ??
For example, if you have some group1 wich have repeating field CustomerName,
and you want to choose CustomerName wich equals "Mark Jhon" you whould write
something like this in:
/group1[@CustomerName='Mark Jhon']/CustomerName
in formula of some field or in C# code...
I hope it will help...
> I have a repeating group which I wish to loop through to check against.
> How can I (Programmatically) loop through all the nodes in a repeating
[quoted text clipped - 3 lines]
>
> Greg