MSHTML tutorial [closed]
Asked Answered
M

3

5

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#.

Mohawk answered 21/3, 2009 at 12:36 Comment(3)
You might get more answers if you can specify the language(s) you are planning to use.Jonjona
Thanks DR! I have added, and your comments are really making senese. :-)Mohawk
refer: codeguru.com/cpp/i-n/ieprogram/article.php/c4385/…Linnell
J
5

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.

Jonjona answered 21/3, 2009 at 12:57 Comment(1)
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.Mohawk
G
4

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?

Gardy answered 21/3, 2009 at 13:56 Comment(6)
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?Mohawk
@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. :-)Mohawk
George, if you intend to scrape HTML and crawl the DOM then you will want MSHTML.Storytelling
@Neil: why would he use MSHTML and not the WebBrowser control?Gardy
The WPF and Windows Forms WebBrowser controls both use MSHTML. Using these classes and interop to access the various interfaces is the logical thing to do. You'll find most of the required MSHTML and COM type declarations on pinvoke.net and koders.com. MSDN has documentation on all interfaces.Underskirt
@Ludvig: you might be surprised how many people don't know COM these days.Gardy
A
0

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.

Avesta answered 24/10, 2009 at 17:10 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.