The following is the XML interpretation programming environment (MSXML 4.0 sp2) for configuring vc60)
Download MSXML 4.0 sp2 to Microsoft website
When installing MSXML 4.0 sp2, be sure not to use the default installation. You must select Custom installation to install the SDK. If you do not select the SDK Installation option, you will find that there is nothing in the installation directory after the installation is complete, after SDK installation is selected, You can see three lib Inc Doc folders in the directory.
Http://www.cnblogs.com/babyblue/archive/2005/05/09/151462.html
Register dll:
Enter the following command on the command line to bring up the registration successful dialog box.
Cd c:/Windows/system32
Regsvr32 msxml4.dll
Configuration:
1. If it is installed by default, You can see three folders in the C:/program files/MSXML 4.0 folder; otherwise, reinstall MSXML.
2. Add the directory to include path.
Under vc60
Tools-> options...-> directories tab-> include: add the INC path C:/program files/MSXML 4.0/INC
Tools-> options...-> directories tab-> library add Inc path C:/program files/MSXML 4.0/lib
3. # include <msxml2.h> In the code
4. Link Lib: msxml2.lib
<End>