vote up 2 vote down star
2

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

flag

41% accept rate
You might get more answers if you can specify the language(s) you are planning to use. – DR Mar 21 at 12:54
Thanks DR! I have added, and your comments are really making senese. :-) – George2 Mar 21 at 13:10

3 Answers

vote up 3 vote down

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.

link|flag
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 Mar 21 at 13:12
vote up 3 vote down

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?

link|flag
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 Mar 21 at 14:11
@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 Mar 21 at 14:11
George, if you intend to scrape HTML and crawl the DOM then you will want MSHTML. – Neil Kimber Oct 24 at 17:35
@Neil: why would he use MSHTML and not the WebBrowser control? – John Saunders Oct 26 at 0:55
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.