Newsgroups : Borland : borland.public.delphi.internet.winsock : 2007 Apr : Writing XML with TXMLDocument.
| Subject: | Writing XML with TXMLDocument. |
| Posted by: | "Massimo Bolzoni" (massimo.bolzo..@mandelli.com) |
| Date: | Mon, 16 Apr 2007 15:16:29 |
Hello people,
I'm writing a XML document using
a TXMLDocument (Delphi 2005 Ent.).
My doc is very simple:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<LogBook type="Day">
<item date="16/04/2007" time="12:21:30" type="RXC">...TEXT...</item>
...
</LogBook>
If I want to add this line:
<?xml-stylesheet type="text/xsl" href="abcd.xslt"?>
after the header, how can I do? I don't see any property
of TXMLDocument that can take this info!
Thanks for replies, Max.