Hello,
In Excel 2003 I have made a script that copies the contents of xml files. But this is done one element at the time (rootNode.appendChild(xmlElement)). This takes a lot of time with large files (50mb+).
Is it possible to copy the entire content of a xml file?
The first thing I did to speed things up is to work with a duplicate file. I make a copy of the original file and add the remaining elements to the duplicate.
When I have a file with 5.000 elements and I need 6.000 it is not a problem. Only 1000 elements have to be added, wich is done in a short time. But if I want 60.000 elements it takes a lot longer.
Is there a different way to do this?
Thanks in advance,
Sjakie
---------------------------------------------
Yes, the world is full of strange people.
In Excel 2003 I have made a script that copies the contents of xml files. But this is done one element at the time (rootNode.appendChild(xmlElement)). This takes a lot of time with large files (50mb+).
Is it possible to copy the entire content of a xml file?
The first thing I did to speed things up is to work with a duplicate file. I make a copy of the original file and add the remaining elements to the duplicate.
When I have a file with 5.000 elements and I need 6.000 it is not a problem. Only 1000 elements have to be added, wich is done in a short time. But if I want 60.000 elements it takes a lot longer.
Is there a different way to do this?
Thanks in advance,
Sjakie
---------------------------------------------
Yes, the world is full of strange people.