views:

1017

answers:

3
+2  Q: 

MSHTML tutorial

Hello everyone,

I want to learn some basics about MSHTML, like how to use IHtmlDocument and IHtmlDocument2 interfaces. I searched for quite a while, but can not find out a tutorial for beginners. Could anyone recommend something to read?

EDIT: I prefer to use C#.

thanks in advance, George

+3  A: 

When I was learning to use MSHTML I mostly relied on the MSDN documentation and asked specific details in newsgroups and sites like this.

It also helped me alot to download the whole Windows SDK instead of reading online.

DR
Thanks DR, I have read the documents you listed here before. They are more about API document, but what I need is a tutorial or something for a beginner to learn how to use MSHTML to develop some simple applications step-by-step.
George2
+3  A: 

If you are using C#, then you should not be using MSHTML. Use the WebBrowser component if you're using Windows Forms, use any of the XML APIs if you're trying to generate HTML (as XHTML). You might possibly want to use an HtmlWriter, but stay away from unmanaged code, if you can help it.


Links:

BTW, MSHTML is not a new thing - it's an old thing. BTW2, is this the George2?

John Saunders
Thanks John, not get too much impression about what do you mean "WebBrowser component" and "HtmlWriter", could you refer to some links about your ideas please?
George2
@John, appreciated if you could recommend me to some basic tutorials about how to use MSHTML in unmanaged code. I am very interested to learn new things. :-)
George2
George, if you intend to scrape HTML and crawl the DOM then you will want MSHTML.
Neil Kimber
@Neil: why would he use MSHTML and not the WebBrowser control?
John Saunders
A: 

There are some tutorials under the "hosting and reuse" section of IE SDK documentation. But I guess you need to read the DHTML tutorials under the HTML/CSS section as well.

Sheng Jiang 蒋晟