Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim oXMLData as MSXML2.DomDocument
dim oXMLStyleSheet as MSXML2.DomDocument
dim sResult as String
Set oXMLData = New MSXML2.DomDocument
Set oXMLStyleSheet = New MSXML2.DomDocument
oXMLData.Load "location_of_xml_file.xml"
oXMLStyleSheet.Load "location_of_xsl_file.xsl"
'Could be TransformNode I'm not sure because I'm
'typing this by heart...
sResult = oXMLData.Transform oXMLStyleSheet