Hi list, I'm writing XML export for datasets using the XMLWrite and DOM units (as per documentation at http://wiki.lazarus.freepascal.org/XML_Tutorial) I've got this snippet: FOutputDoc := TXMLDocument.Create;
How do I change the first line of the generated XML output from <?xml version="1.0"> to <?xml version="1.0" standalone="yes"?> I tried adding an attribute like this: TDOMElement(FOutputDoc.DocumentElement).SetAttribute( 'standalone', UTF8Decode('yes')); but that gave an access violation: DocumentElement property is read-only... Thanks, Reinier _______________________________________________ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal