I need a sample or tutorial on working with XML files. I want to create a file that contains a "record" to a person, something like this:
Name: Just Me Age: 99 EMail: me@some.net
I want to learn how to read and write an XML file.
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Have a look at Jeroen Pluimers Sessions at CodeRage 4 called Practical XML in Delphi
|
|||
|
|
|
This can get you up to speed in less than 10 minutes: http://www.youtube.com/watch?v=4D78MG4CaAI (a tutorial on using XML data binding wizard) |
|||||
|
|
Wow, I just noticed this post after posting a tutorial of Xml serialization with Delphi 2010. It can be looked at to see out TXmlDocument works, but there are many other methods that will work as well. I typically use msXml unit directly as it exposes XPath which TXmlDocument does not. |
|||
|
|