Web Development
htmlpars.txt
Associated article: Using Internet Explorer's HTMLParser
Tags: Web Development
Published source code accompanying the article by Andrew Tucker in which he discusses Microsoft's Internet Explorer 4.0 browser provides COM interfaces that lets you easily load and parse HTML without actually having to display it. Andrew describes these interfaces and implement a C++ class that lets you take advantage of them. Also see HTMLPARS.ZIP
Using Internet Explorer's HTML Parser by Andrew Tucker Listing One /* Implement an HTML parser using IE4's IHTMLDocument2 interface. */ #ifndef __HTML_H__ #define __HTML_H__ #include <windows.h> #include <string> // if you are using VC6 or ...


