1. 首先你要引用microsoft Xml
2.写代码
Dim XmlRoot As MSXML2.DOMDocument
Dim oElement As MSXML2.IXMLDOMElement
XmlRoot.load "xml文件" ‘包含目录信息
Set oElement = Me.XmlRoot.selectSingleNode(“/Values/101”)
oElement.text="xxxx" '这里可以修改节点的值1为xxxx.如果获取值,直接使用 oElement.text .
例如,dim sa as string
sa=oElement.text 'sa的结果应该是"1"
追问已经引用了microsoft Xml 6.0
。。。。
XmlRoot.Load (App.Path & "\Values.xml")
Set oElement = Me.XmlRoot.selectSingleNode("//Values/101")
。。。。
提示Set oElement = Me.XmlRoot.selectSingleNode("//Values/101") 未找到方法或数组成员