I have an interesting problem. XML <Settings>
<Syslog AP="0" Level="0" CC="0" IP="" CN="0"/>
</Settings> CODE_1 Dim $name[1], $value[1]
_XMLFileOpen($filename)
$temp = _XMLGetAllAttrib("Settings/Syslog", $name, $value) CODE_2 _XMLFileOpen($filename)
$temp = _XMLGetAttrib("Settings/Syslog", "AP") CODE_1 could read attributes correctly, but CODE_2 cannot, it returns $temp = -1, and the error is "Attribute not found". What's the problem? Thanks!