XSL Translation of DOM Document Won't work

webmasterbeta

New Member
The Following VB Code Works STEPPING through, but Gives me an Invalid ProcedureCall error message# 5Dim objXMLStyle As New DOMDocumentDim objDOMDocument As New DOMDocumentDim strXMLFromXSL As StringOn Error GoTo ErrorhandlerCall objDOMDocument.Load("http://ODISMTS2/WebLabels/XSLCOMTEST.xml")Call objXMLStyle.Load("http://ODISMTS2/WebLabels/XMLTOTILDE.xsl")strXMLFromXSL = objDOMDocument.transformNode(objXMLStyle.documentElement)MsgBox strXMLFromXSL
 
Back
Top