Not able to get data from XML file in VBA?

前端 未结 2 1777
孤独总比滥情好
孤独总比滥情好 2021-01-27 02:30

I am trying to get data from XML file but can\'t get. I don\'t know what I am missing here.

XML File:



        
2条回答
  •  -上瘾入骨i
    2021-01-27 02:58

    Try xml linq

    Imports System.Xml
    Imports System.Xml.Linq
    Module Module1
        Const FILENAME As String = "c:\temp\test.xml"
        Sub Main()
            Dim doc As XDocument = XDocument.Load(FILENAME)
    
            Dim results = doc.Descendants("TestObject").Select(Function(x) New With { _
                .site = CType(x.Element("Site"), String), _
                .name = CType(x.Element("Name"), String), _
                .url = CType(x.Element("URL"), String) _
            }).ToList()
        End Sub
    
    End Module
    

提交回复
热议问题