проверка оьъекта
Пишу в скрипте .vbs:
set country=CreateObject("msxml2.DOMDocument.4.0")
country.async=true
if country.load("CountryList.xml") then
set croot=country.documentElement
...
if croot.selectSingleNode("//CountryList/Country[@Name='" & cname & "']/@ID").text then
cid=croot.selectSingleNode("//CountryList/Country[@Name='" & cname & "']/@ID").text
end if
end if
Проверка if croot.selectSingleNode("//CountryList/Country[@Name='" & cname & "']/@ID").text не работает, т.е. в том случае, когда в xml'е нет удовлетворяющего xpath'у элемента, выдаётся ошибка.
Как же написать условие в данном случае?
Очень надеюсь на помощь.