Large XML files

Hi,
does anyone know what happens when a large file, > 50 mb, is passed to the Load method of a MSXML2.DOMDocument40 instance in VB6? Is the whole file parsed at once or is the domobject smart enough to parse only reqiuerd parts of it?
// Anders
[262 byte] By [Anders99] at [2007-11-19 5:58:33]
# 1 Re: Large XML files
The whole file is parsed at once and resulting tree is builded in memory.
It is the way of DOM parsing...
U can avoid this by using event driven parsers (like SAX).

Best regards,
Krzemo.
Krzemo at 2007-11-10 3:27:42 >