• Source
    1. Function XMLReader(ByVal str_XmlFilePath As String) As String
    2.  
    3. Dim Xml_doc As XmlDocument
    4. Dim str_Xml As String
    5. Xml_doc = New XmlDocument
    6. Xml_doc.Load(str_XmlFilePath)
    7.  
    8. str_Xml = Xml_doc.InnerText
    9.  
    10. Return str_Xml
    11.  
    12. End Function