G
Guest
I have a document XML that I would modify in VisualBasic.NE
When the user set the checkbox and radiobutton in a form I save this information and modify a document
My document is in the following form
<opzioni><opzione nome="DDR"><item tipo="prova" label="Ridotto">true</item><item tipo="completo" label="ok">false</item></opzione><opzione nome="SDR"><item tipo="speed" label="Veloce">true</item><item tipo="normal" label="Normale">false</item></opzione></opzioni
I have to modify the value True/False into the TAG <item
xmlDoc.Load(fileName
root = xmlDoc.DocumentElemen
nodeList = root.SelectNodes("opzione/item"
For I = 0 To nodeList.Count -
elem = nodeList.Item(I
elem.Value = NEWVALUE ****My code generate an error here***
This is the error messagge:
"Impossibile impostare un valore su un nodo di tipo: Element.
thank yo
cos75
When the user set the checkbox and radiobutton in a form I save this information and modify a document
My document is in the following form
<opzioni><opzione nome="DDR"><item tipo="prova" label="Ridotto">true</item><item tipo="completo" label="ok">false</item></opzione><opzione nome="SDR"><item tipo="speed" label="Veloce">true</item><item tipo="normal" label="Normale">false</item></opzione></opzioni
I have to modify the value True/False into the TAG <item
xmlDoc.Load(fileName
root = xmlDoc.DocumentElemen
nodeList = root.SelectNodes("opzione/item"
For I = 0 To nodeList.Count -
elem = nodeList.Item(I
elem.Value = NEWVALUE ****My code generate an error here***
This is the error messagge:
"Impossibile impostare un valore su un nodo di tipo: Element.
thank yo
cos75