我在访问xml.DocumentElement时,这么会出现如下提示Access violation at 01693AF6 accessing 0575C954。不知道是何原因?
我在动态创建的时候用了如下的语句:
if Not Assigned(xml) then begin
xml:= TXMLDocument.Create(nil);
xml.DOMVendor := GetDOMVendor('MSXML');
end;
使用的时候如下:
xml.filename = 'd:/a.xml';
xml.active := True;
iCount := xml.documentelement.ChildNodes.count;
就出错了,不知道是什么原因?