How to update a parameter value which has same parameter name in the same section.
-
Can Some please help me. How can we update a value which has the same parameter name in the same section using vc++ Param Value Param Value Now i want to update both the param values but both the parameters has the same parameter name. So how can we update these values?? Thanks
-
Can Some please help me. How can we update a value which has the same parameter name in the same section using vc++ Param Value Param Value Now i want to update both the param values but both the parameters has the same parameter name. So how can we update these values?? Thanks
You can use document order. To locate the first "Param1" element, the XPath is:
/RootElement/Param1[1]
and the second is:/RootElement/Param1[2]
. George"We make a living by what we get, we make a life by what we give." --Winston Churchill