Sample code for 30+ languages & platforms
Xojo Plugin

Load XML from Local FilePath

Demonstrates how to load XML from a local XML file.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

Dim xml As New Chilkat.Xml

// Pass either an absolute file path, or a file path relative from the current working directory of the caller.
success = xml.LoadXmlFile("qa_data/hamlet.xml")
If (success = False) Then
    System.DebugLog(xml.LastErrorText)
    Return
End If

System.DebugLog("Success.")