URL の XML を試していますが、うまくいかないようです。ローカルファイルから読み込む場合にのみ機能します。
私が読もうとしているウェブページは次のとおりです: http://na.lolesports.com/api/standings?tournament=7
助けてくれてどうもありがとう
Set xmlObject = CreateObject("Microsoft.XMLDOM")
'urlPath = "na.lolesports.com/api/standings?tournament=7/standings.xml"
'urlPath = "na.lolesports.com/api/standings?tournament=7"
'urlPath = "C:\Trio Scripts\standings.xml"
xmlObject.load(urlPath)
if (not isNull(xmlObject)) then
set nodes = xmlObject.selectNodes("//team_title")
for i = 0 to (nodes.length - 1)
msgbox(nodes(i).nodeName & " - " & nodes(i).text)
next
end if