Thursday, September 04, 2008

A simple XML database for your Windows applications

A simple XML database for your Windows applications

Dim sw As System.IO.StreamWriter = New System.IO.StreamWriter("..\mydata.xml")
sw.Write(ds.GetXml.ToString) '//place the xml into the text file
sw.Flush()
sw.Close()

No comments:

Post a Comment