Non sono molto pratico di XML, qualcuno di voi ha già sviluppato programmi per leggere / scrivere file XML su pocket PC? su internet si trova poco, oppure gli esempi che ci sono non funzionano, tipo questo:
Imports System.Xml
Imports System
Module Module1
Sub Main()
Dim writer As New XmlTextWriter("xmltest.xml", Nothing)
' Starts a new document.
writer.WriteStartDocument()
'Write comments.
writer.WriteComment("Commentss: XmlWriter Test Program")
writer.WriteProcessingInstruction("Instruction", "Person Record")
' Add elements to the file.
writer.WriteStartElement("p", "person", "urn:person")
writer.WriteStartElement("LastName", "")
writer.WriteString("Chand")
writer.WriteEndElement()
writer.WriteStartElement("FirstName", "")
writer.WriteString("Mahesh")
writer.WriteEndElement()
' Ends the document
writer.WriteEndDocument()
End Sub
Il file viene creato ma vuoto, forse manca lo schema xsd? se si dove e come andrebbe messo?