|
|
 |
|
|
| NOTE: This Design document is subject to change at any time. |
Loads the XML data from the file Filename and constructs the DOM Document object, which is returned. The Filename can also be a URL to XML data on a remote web site.
The following code loads an XML file, creates the DOM Document and displays the XML tree structure in a zTree component:
| Code: |
Tree.CountProp = "ChildCount"
Tree.ChildProp = "ChildNodes"
Tree.CaptionProp = "NodeName"
Set Dom = xml.LoadFile("emobius.zml")
Tree.Add Dom.Document |
|
|