XML support in Visual Studio 6??

Hey all.

I have used the MFC libraries XML functions in Visual Studio .Net 2003, but I have a new job now, and they want to create XML files from my c++ application. What is the support for XML like in that version? If there are any, suggestions, I'm grateful for the help!

Thanks in advance,

Rob
[330 byte] By [Rob McVicar] at [2007-11-19 8:46:15]
# 1 Re: XML support in Visual Studio 6??
Oh the version I'm using at the new job is Visual Studio 6!

Thanks again!
Rob McVicar at 2007-11-10 3:27:31 >
# 2 Re: XML support in Visual Studio 6??
There isn't any built-in support per se, but you can use XML via COM in VC6 using the import statement.


#import <msxml4.dll> raw_interfaces_only
using namespace MSXML2;
Arjay at 2007-11-10 3:28:32 >
# 3 Re: XML support in Visual Studio 6??
Sorry for the late reply (I had gone home by the time you replied) but thanks. I know that .NET has MFC support for XML (and although it disables the debugger) I quite like it! Unfortunately, I'm working in the dark ages here, and since no one has .Net experience but me and they are afraid of change! I am also using the STL stuff (which I don't care for) and combining the technologies I know with these other things is quite bothersome.

Thanks again for the reply!
Rob McVicar at 2007-11-10 3:29:30 >