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.
'Set a reference to Microsoft XML, 4.0
Dim oXml As MSXML2.DOMDocument40
Dim oXMLTempNode As MSXML2.IXMLDOMNode
Dim oChild As MSXML2.IXMLDOMNode
Dim oValue As MSXML2.IXMLDOMNode
Set oXml = New MSXML2.DOMDocument40
' First Create the top-level Node
Set oXml.documentElement = oXml.createElement("Root")
'Code to Repeat:
'Now create the first child node
Set oXMLTempNode = oXml.documentElement.appendChild(oXml.createElement("FormElement"))
Set oChild = oXMLTempNode.appendChild(oXMLTempNode.ownerDocument.createElement("MyTextField"))
Set oValue = oChild.appendChild(oChild.ownerDocument.createTextNode("ValueofMyTextField"))
'Repeat the code for the other form fields
Set oChild = Nothing
Set oValue = Nothing
Set oXMLTempNode = Nothing
Set oXml = Nothing