fboehlandt
Technical User
Hello everyone
I have some code that transforms and XML to HTML using a style sheet. The transformation below works fine:
However, the XLS file is usually referenced as a URL rather than a Windows file path (the XLS file is lolcated on a different server). Changing the relevant line to:
does not work, presumably since the load method does not work with URL. Do I have to access the file via browser and save locally or is there a quicker method? And if so, what would I have to do to dave the file to the local directory? Many thanks in advance
I have some code that transforms and XML to HTML using a style sheet. The transformation below works fine:
Code:
'Load the XML and the XSL (the stylesheet)
Set oXML = CreateObject("MSXML.DOMDocument")
Set oXSL = CreateObject("MSXML.DOMDocument")
oXML.Load "D:\some directory\XMLfile.xml"
oXSL.Load "D:\some directory\XSLtheme.xsl"
'Transform the XML using the stylesheet
sHTML = oXML.transformNode(oXSL)
However, the XLS file is usually referenced as a URL rather than a Windows file path (the XLS file is lolcated on a different server). Changing the relevant line to:
Code:
oXSL.Load "[URL unfurl="true"]http://srv001234.internal.com/somedirectory/XSLtheme.xsl"[/URL]
does not work, presumably since the load method does not work with URL. Do I have to access the file via browser and save locally or is there a quicker method? And if so, what would I have to do to dave the file to the local directory? Many thanks in advance