Does anyone know a good tutorial about how to implement xml parser with MS Toolkit 2003?
I have trying that for a couple of minutes but seems that #import <msxml.dll> ain't working....
This is a discussion on Need tutorial to use msxml parser with MS Toolkit 2003 within the Windows Programming forums, part of the Platform Specific Boards category; Does anyone know a good tutorial about how to implement xml parser with MS Toolkit 2003? I have trying that ...
Does anyone know a good tutorial about how to implement xml parser with MS Toolkit 2003?
I have trying that for a couple of minutes but seems that #import <msxml.dll> ain't working....
The VC Toolkit does not have all the in-built COM support provided by the commercial version of VC. You can either use the raw COM interfaces (use the msxml.h header) or you can use a COM helper library such as DispHelper. There is a MSXML sample provided with DispHelper: xml.cpp or xml.c.