Hi :)
Sorry,
Where it is said:
This is important to understand since sometimes MSXML2 is not possible to
use. For example, if I try to do this:
Set docStylesheet = CreateObject("Microsoft.XMLDOM")
docStylesheet.async = False
docStylesheet.load "TransformBookDetails.xsl"
I will get an error message! However, this method belongs to
MSXML2.DomDocument, too!
should be read:
This is important to understand since sometimes MSXML2 is not possible to
use. For example, if I try to do this:
Set docStylesheet = CreateObject("MSXML2.DomDocument")
docStylesheet.async = False
docStylesheet.load "TransformBookDetails.xsl"
I will get an error message! However, this method belongs to
MSXML2.DomDocument, too!
Thank you
Sergio Oliveira