hello all!!
I have a repeating section such as:
SPECIES_ID
count
length
weight
notes
I need to only access SPECIES_ID value for each repeating section and store it into an array. I am working in C#, and I need to do this before saving the infopath form.
I have tried using:
XmlDocument doc = new XmlDocument();
doc.Load(NFile); // NFile contains the file Name
XmlElement root = doc.DocumentElement;
XmlNodeList TestNodeList;
TestNodeList = root.SelectNodes("/my:myFFIM_base_table/my:Species_Records/my:SpeciesGroup/my:SPECIES_ID", NamespaceManager);
but to no success. Can anyone point me into the right direction as to how to do this? Thank You!!