In the answer to question #56107, Erlend provided this sample c# code:
using mshtml;
...
object[] oPageText = { html };
HTMLDocument doc = new HTMLDocumentClass();
IHTMLDocument2 doc2 = (IHTMLDocument2)doc;
doc2.write(oPageText);
I'd like to use mshtml in VB.NET, but the IDE doesn't recognize this:
Imports mshtml
What additional steps do I need to take to use MSHTML in VB.NET?