Hello
I Know how to create and add elements to xml file with XmlTextWriter, here
is code for example:
Dim textWriter As XmlTextWriter = New XmlTextWriter(" table.xml", Nothing)
' Opens the document
textWriter.Writ eStartDocument( )
' Write comments
textWriter.Writ eComment("Datab ase")
' Write first element
textWriter.Writ eStartElement(" R_DataBase")
textWriter.Writ eString("test")
textWriter.Writ eEndElement()
' Ends the document.
textWriter.Writ eEndDocument()
' close writer
textWriter.Clos e()
I Would like to know if there's way to edit xml file i mean to open the file
and then to add or remove elements from it. beacuse right now my program
make a new xml file everytime i need to save the file
I Know how to create and add elements to xml file with XmlTextWriter, here
is code for example:
Dim textWriter As XmlTextWriter = New XmlTextWriter(" table.xml", Nothing)
' Opens the document
textWriter.Writ eStartDocument( )
' Write comments
textWriter.Writ eComment("Datab ase")
' Write first element
textWriter.Writ eStartElement(" R_DataBase")
textWriter.Writ eString("test")
textWriter.Writ eEndElement()
' Ends the document.
textWriter.Writ eEndDocument()
' close writer
textWriter.Clos e()
I Would like to know if there's way to edit xml file i mean to open the file
and then to add or remove elements from it. beacuse right now my program
make a new xml file everytime i need to save the file
Comment