Hi,

I'm trying to save an XML file that will look like this:

Qt Code:
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE MyApp Project>
  3. <Project>
  4. <Name>
  5. "Project Name"
  6. </Name>
  7. <Programs>
  8. <Program 1>
  9. <value1>
  10. "Value1"
  11. </value1>
  12. <value2>
  13. "Value2"
  14. </value2>
  15. </Program 1>
  16. </Programs>
  17. </Project>
To copy to clipboard, switch view to plain text mode 

Can anoyone provide me an example to write this XML? I'm reading the docs but I can't find a XML creation example.

Thanks,