W
wukui
Unregistered / Unconfirmed
GUEST, unregistred user!
我想在C++ Builder使用MSXML4,
Delphi 6中的代码是:
tempXMLDoc : OleVariant;
tempXMLDoc := CreateOLEObject('MSXML2.DOMDocument.4.0');
tempXMLDoc.async := False;
tempXMLDoc.load('example.xml');
showmessage(tempXMLDoc.selectSingleNode('//User/@ID').nodeTypedValue);
工作正常。
C++ Builder中有没有相应的方式实现以上代码?
最好能给出些代码。
不要使用导入类型库的方法,很不好用,能不能使用Delphi中的方式实现?
谢谢。
Delphi 6中的代码是:
tempXMLDoc : OleVariant;
tempXMLDoc := CreateOLEObject('MSXML2.DOMDocument.4.0');
tempXMLDoc.async := False;
tempXMLDoc.load('example.xml');
showmessage(tempXMLDoc.selectSingleNode('//User/@ID').nodeTypedValue);
工作正常。
C++ Builder中有没有相应的方式实现以上代码?
最好能给出些代码。
不要使用导入类型库的方法,很不好用,能不能使用Delphi中的方式实现?
谢谢。