Hi , How can I add a web brower in VS

I want to create a window/document to show a html file in VS. How can I do that I tried DTE.Documents.Add(Constants.vsDocumentKindHTML) , but failed.


Answer this question

Hi , How can I add a web brower in VS

  • Scott Lentz

    DTE.ItemOperations.Navigate(...) will open the given URL into a web browser.

    Craig



  • Hi , How can I add a web brower in VS