- Код: Выделить всё
xmlDoc.async = False
xmlDoc.validateOnParse = False
xmlDoc.Load (App.Path & "\weather_input.xml")
xmlDoc.setProperty "SelectionLanguage", "XPath"
MsgBox xmlDoc.selectSingleNode("//tbody[@class='near']").selectSingleNode("tr[@class='t2']"). _ selectSingleNode("th[@class='date']").selectSingleNode("th[@class='date']").selectSingleNode("b").Text
Проблемы возникли на последней строке. Пишет, что "Object variable or With block variable not set".
Интересующий меня отрывок из XML-документа:
- Код: Выделить всё
<?xml version="1.0" encoding="utf-8"?>
...
<tbody class="near">
<tr class="t2 ">
<th rowspan="4"><i>пн</i></th>
</tr>
</tbody>