vs c++2010 msxml loadXML遭遇 p!=0问题。求助高手
1 CoUninitialize();2 CComPtr<IXMLDOMDocument> iXMLDoc;
3 iXMLDoc.CoCreateInstance(__uuidof(DOMDocument));
4 HR = iXMLDoc->loadXML(bstrText,VARIANT_FALSE);
5 hr = iXMLDoc->selectSingleNode(strFindText_bstr, &pIDOMNode);
在运行到第4行时候,程序崩溃。 提示p!=0
下面是dubug的输出
+ p 0x00000000 IXMLDOMDocument *
--------------------编程问答-------------------- 怀疑
iXMLDoc.CoCreateInstance(__uuidof(DOMDocument));
失败
domdocument等于什么??
补充:.NET技术 , VC.NET