Das bringt leider immernoch -> siehe Anhang
wenn ich es so probiere
Delphi-Quellcode:
while NodeBase.childNodes[i].childNodes.length > 0 do
NodeBase.childNodes[i].removeChild(NodeBase.childNodes[i].firstChild);
klappt das zwar, aber im nächsten Durchlauf bei
Delphi-Quellcode:
while Assigned(NodeAnother)
do
begin
NodeNext := NodeAnother.NextSibling;
i := 0;
while (i < NodeBase.childNodes.length) <<<<<
Access Violation
and (NodeBase.childNodes[i].firstChild.text
<> NodeAnother.firstChild.text)
do
Inc(i);
if i >= NodeBase.childNodes.length
then
...
knallt´s.