In response to question # 56107, Erlend provided this C # code example:
using mshtml;
...
object[] oPageText = { html };
HTMLDocument doc = new HTMLDocumentClass();
IHTMLDocument2 doc2 = (IHTMLDocument2)doc;
doc2.write(oPageText);
I would like to use mshtml in VB.NET, but the IDE does not recognize this:
Imports mshtml
What additional steps need to be taken to use MSHTML in VB.NET?
source
share