Ok, nochmal versuchen
Ich erstelle mit OpenXML eine
XML-Datei und füge meine Knoten hinzu:
Delphi-Quellcode:
FDoc := TDomDocument.Create(DomImplementation1);
FDoc.AppendChild(FNodeElement);
...
Die
XML-Datei sieht dann ungefähr so aus:
Delphi-Quellcode:
<?
xml version="1.0" encoding="UTF-8"?>
<MEINE_KNOTEN>
....
</MEINE_KNOTEN>
Das "<?
xml version...>" wird automatisch erstellt, wie bekomme ich jetzt noch die o.g. Zeile dahinter, damit das Ganze so aussieht:
Delphi-Quellcode:
<?
xml version="1.0" encoding="UTF-8"?>
<?
xml-stylesheet href="template.xsl" type="text/xsl"?>
<MEINE_KNOTEN>
....
</MEINE_KNOTEN>
Gruß Igotcha