J
Juli V.
Can somebody, please, explain me the way of workin this method!
For example, in some cases (help examples) I can see syntax like this:
objXMLNode = XDocument.DOM.selectSingleNode("/employees/employee"); //
HERE!!!
XDocument.View.SelectNodes(objXMLNode);
objXMLNodes = XDocument.View.GetSelectedNodes();
if (objXMLNodes.Count > 0){
XDocument.UI.Alert(objXMLNodes(0).nodeName + "\n\n" +
objXMLNodes(0).text);
}
And in some another:
nodeselfilename =
XDocument.DOM.selectSingleNode("/my:myFields/my:FileName").text; //
ANOTHER!!!
XDocument.SaveAs(nodeselfilename);
So what is the point?? I can't catch it!
And now my problem:
I have Repeating Table, and want to extract the same values from text-field,
for example, "task" (it repeats several times)
So how should I achieve it? To get array, or something, with the values from
this field!
Thanx a lot for help!
For example, in some cases (help examples) I can see syntax like this:
objXMLNode = XDocument.DOM.selectSingleNode("/employees/employee"); //
HERE!!!
XDocument.View.SelectNodes(objXMLNode);
objXMLNodes = XDocument.View.GetSelectedNodes();
if (objXMLNodes.Count > 0){
XDocument.UI.Alert(objXMLNodes(0).nodeName + "\n\n" +
objXMLNodes(0).text);
}
And in some another:
nodeselfilename =
XDocument.DOM.selectSingleNode("/my:myFields/my:FileName").text; //
ANOTHER!!!
XDocument.SaveAs(nodeselfilename);
So what is the point?? I can't catch it!
And now my problem:
I have Repeating Table, and want to extract the same values from text-field,
for example, "task" (it repeats several times)
So how should I achieve it? To get array, or something, with the values from
this field!
Thanx a lot for help!