Click here to Skip to main content
15,897,291 members
Everything / MSXML

MSXML

MSXML

Great Reads

by Terence Wallace
Ordermate can be used as a basic example of utilizing the XMLSerializer class to automate the creation of invoice forms.

Latest Articles

by Terence Wallace
Ordermate can be used as a basic example of utilizing the XMLSerializer class to automate the creation of invoice forms.

All Articles

Sort by Score

MSXML 

10 Feb 2015 by Richard Deeming
MSXML6 is included with all recent versions of Windows, so the MSI packages are unlikely to work. The download link says that the MSI files only work on:Windows 2000 Service Pack 4Windows Server 2003Windows Server 2003 Service Pack 1Windows XP Service Pack 1Windows XP Service Pack...
11 Feb 2015 by CHill60
As discussed with Maximillien ... I suggested checking which of the System32 or SysWOW64 dlls appears first in the PATH, LIB or /I directive? Is that the right version for the platform you are building for (64-bit and 32-bit respectively)?OP confirmed all the default paths...
14 Mar 2016 by Jochen Arndt
If you would have checked the return values of the API functions or used a high warning level for the compiler, you would have detected the error in this line:SampleFunc= (PFN_SampleFunc)GetProcAddress(hNWLib, L"SampleFunc");The function name argument is of type LPCSTR but you are passing a...
10 Jun 2017 by Richard MacCutchan
Don't know what you Googled for but I found this quite easily: MSXML 6.0 GUIDs and ProgIDs[^].
17 Feb 2013 by Kucera Jan
HI, there.Can you provide explanation on the topic of version-specific co-classes in MSXML ?Specifically, I am interested e.g. in the difference between: - DOMDocument vs DOMDocument30 vs DOMDocument60 - SAXXMLReader vs SAXXMLReader30 vs SAXXMLReader60 -...
18 Apr 2013 by CLingam
Hi, I am trying to set timeout as 40 seconds for MSXML2.ServerXMLHTTP. It is not working. objXmlHttp.setTimeouts(40000, 40000, 40000, 40000)Can anyone help in this issue.Thanks in advance.
6 Nov 2013 by RedUnited
Hello,I have a CString which contains the XML contents in it . I have to append this to an existing XML file. How do I proceed?I tried to do it this way:IXMLDOMDocument2Ptr pXMLDoc;//load the below xml with the above ptrXML 1: .. .. ...
6 Nov 2013 by Ehsan A Samani
bool GetInlineXmlDoc(LPCTSTR pcszInlineXml,CComPtr & inlineXmlDoc){ if (SUCCEEDED(::CoCreateInstance(CLSID_DOMDocument2, NULL, CLSCTX_INPROC_SERVER, IID_IXMLDOMDocument, (void**)&inlineXmlDoc))) { VARIANT_BOOL isSuccessful =...
5 Dec 2013 by Lakshadeep
I have made an 1.exe file which takes two numbers as input. The output is the sum of the two numbers. I also have another 2.exe file which uses this sum and performs a multiplication operation and gives the output. I wanted to send the output data of 1.exe to an xml file and retrieve the...
5 Dec 2013 by CPallini
What about reading the documentation[^]?
3 Nov 2014 by drkwlf
http://msdn.microsoft.com/en-u...
10 Feb 2015 by Maximilien
uninstalling a driver messed up my machine by removing/unregistering MSXML6.dlland now, I get this when compiling my stuffThe error happens for a win64 compilation.file.cpp: fatal error C1083: Cannot open type library file: 'msxml6.dll': No such file or directorythe code...
13 Mar 2016 by Thakur JAI SINGH
Hi,I have migrated my project from VS2012 to VS2015 and currently I am getting error#import #import MSXML::IXMLDOMDocumentPtr gl_pDOMDoc[2] ={NULL,NULL};try { ConvertSpecialCharToString(strNewKey );//HSS_03152010 m_strKeypath = m_strETool + "//" +...
13 Mar 2016 by Rathore Amit
try using #import instead.
14 Mar 2016 by ASWIN11th
Hi All,I have a doubt on CPP and C# Applications running on Windows Embedded Compact-7.I am loading a library in c++ as hNWLib = LoadLibrary(L"Sample.dll"); SampleFunc= (PFN_SampleFunc)GetProcAddress(hNWLib, L"SampleFunc"); SampleFunc();And inside the Sample.dll in...
14 Mar 2016 by Lambin
I am far to be a specialist of C++ ( I used C++ since VC++ 4 up to 6 when I was tired of VB , but I have stopped since the release of VC# in 2002 ) but maybe this link could be useful.A good rule for every code I am writing ( VC#/VB ) : don't forget the treatment of the exception.I am...
4 Jan 2017 by Jochen Arndt
You can try to Use the System File Checker tool to repair missing or corrupted system files[^]. It is also present with XP and the above link still applies (XP is not mentioned because it is not supported anymore).Note that the tool might ask for a Windows XP installation media and that...
10 Jun 2020 by Coder969
I am trying convert some of old project from vs2005 to vs2015 . Below is the error I am seeing while building it in 2015 . I dont see any problem while building in vs2005 error C2065: 'DOMDocument40': undeclared identifier Below is the code. I am getting the error at the CreateInstance ...
31 May 2017 by Richard MacCutchan
See MSXML 4.0 GUIDs and ProgIDs[^].
10 Jun 2017 by Coder969
Hi all, We are migrating our projects from from vs2005 to vs2015 . As part of this migration we also want to remove msxml4 and use msxml6 . To use MSXML6 I am importing the msxml6.dll and removed msxml4.dll in my code.But when I built it I am getting errors saying below three identifiers are...
25 Apr 2019 by Nick Katditsik
Hi there, I'm consuming a remote WebService, but i'm unable to extract the jpg file containted in the ResponseBody. I fact, I do save a file, but how can i remove the Mime headers etc, so i can view the image?? Here's my code: What I have tried: Sub GetImg(ByVal strUrl As String, ByVal...
25 Apr 2019 by Nick Katditsik
Well, since nobody answers, I binary opened the returned file and removed the headers. But I wonder if there is a better way to extract the actual image from ResponseBody...
20 Nov 2013 by Terence Wallace
Ordermate can be used as a basic example of utilizing the XMLSerializer class to automate the creation of invoice forms.
24 Apr 2019 by Christian Graus
VB6 is 20 years out of date. If I was forced to use it, I'd write COM components in C++ and call them from VB. I see you're already using COM objects. So VB6 is actually irrelevant. If the object you're using doesn't have properties with the things you want, you can't do it
10 Jun 2020 by Dattatraya Mengudale
Just do 2 steps as below.. 1. Specify header as #include 2. Rename to only as below, // Format the XML. This requires a style sheet MSXML::IXMLDOMDocument2Ptr loadXML; hr =...
5 Dec 2013 by udayams
You can do it by using web service for communicating between applications.
14 Oct 2014 by krishnaprasad t
i have developed two modules in in vc++. 1. first module consists of implementing save as method in microsoft offie using c++/clr recommendations using primary interop assemblies. 2.second module consists of xsl transformation using MSXML sdk.when i compile two .cpp files in single vc++...