Tagged Questions
The ixmldomnode tag has no wiki summary.
1
vote
2answers
5k views
How can I access element attributes from an IXMLDOMNode?
I'm building an XML DOM document in C++. My problem is this: I execute an XPATH query from an Element in my Document, which I know will return another Element. The elementPtr->selectSingleNode call ...
0
votes
1answer
130 views
DOMElement in Delphi
how i can use .getElementsByTagName in DOMNodeList Object ?
Like:
procedure TForm1.selecionarClick(Sender: TObject);
var DOMDocument: iXMLDOMDocument;
DOMNodeList: iXMLDOMNodeList;
...
0
votes
2answers
66 views
dom in PHP saves new content over the old File
Each time i do
$country = $this->dom->saveXML(); // put string in country
$this->dom->save('country.xml');
It delets the old country.xml and creates a new country.xml
how can i append ...