Hi,
using vbs I need to read the various sections present in a file named (dettaglio linee).
The file is like that:
<DettaglioLinee>
<NumeroLinea>1</NumeroLinea>
<CodiceArticolo>
<CodiceTipo>SA</CodiceTipo>
<CodiceValore>a1ss</CodiceValore>
</CodiceArticolo>
<Descrizione>ddddd</Descrizione>
<Quantita>1.00</Quantita>
<UnitaMisura>n</UnitaMisura>
<PrezzoUnitario>5250.00</PrezzoUnitario>
<PrezzoTotale>5250.00</PrezzoTotale>
<AliquotaIVA>22.00</AliquotaIVA>
</DettaglioLinee>
<DettaglioLinee>
<NumeroLinea>2</NumeroLinea>
<Descrizione>bbbbbb</Descrizione>
<PrezzoUnitario>0.00</PrezzoUnitario>
<PrezzoTotale>0.00</PrezzoTotale>
<AliquotaIVA>22.00</AliquotaIVA>
</DettaglioLinee>
I can read the first section I found using this command
set node=objxmldoc.selectsinglenode("//DatiBeniServizi/DettaglioLinee")
set valore = node.getElementsByTagName("NumeroLinea")
NUMLINEA= (valore(0).childNodes(0).Text)
But i don't know how can I set a For - Next in order to read all the sctions founded in the file...
Thanks
using vbs I need to read the various sections present in a file named (dettaglio linee).
The file is like that:
<DettaglioLinee>
<NumeroLinea>1</NumeroLinea>
<CodiceArticolo>
<CodiceTipo>SA</CodiceTipo>
<CodiceValore>a1ss</CodiceValore>
</CodiceArticolo>
<Descrizione>ddddd</Descrizione>
<Quantita>1.00</Quantita>
<UnitaMisura>n</UnitaMisura>
<PrezzoUnitario>5250.00</PrezzoUnitario>
<PrezzoTotale>5250.00</PrezzoTotale>
<AliquotaIVA>22.00</AliquotaIVA>
</DettaglioLinee>
<DettaglioLinee>
<NumeroLinea>2</NumeroLinea>
<Descrizione>bbbbbb</Descrizione>
<PrezzoUnitario>0.00</PrezzoUnitario>
<PrezzoTotale>0.00</PrezzoTotale>
<AliquotaIVA>22.00</AliquotaIVA>
</DettaglioLinee>
I can read the first section I found using this command
set node=objxmldoc.selectsinglenode("//DatiBeniServizi/DettaglioLinee")
set valore = node.getElementsByTagName("NumeroLinea")
NUMLINEA= (valore(0).childNodes(0).Text)
But i don't know how can I set a For - Next in order to read all the sctions founded in the file...
Thanks