Wrox Home  
Search P2P Archive for: Go

  Return to Index  

interdev_programming thread: MSXML2.DomDocument and Microsoft.XMLDOM


Message #1 by "Sergio Oliveira" <neptuno2@h...> on Fri, 25 May 2001 17:34:23 -0000
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


  Return to Index