Multiple WebBrowsers

  • Thread starter Thread starter martin
  • Start date Start date
M

martin

Hi all,

Is it possible to have multiple versions of IE in a windows forms
application? I think the WebBrowser component in Visual Studio depends
on the version of IE installed on your computer. I would like to have
eg. IE6 and IE7 in the same form. How is it possible to achieve this?
Thank you for any help..
 
If it's not necessary for you to use System.Windows.Forms.WebBrowser, youcan add references to multiple versions of the mshtml.dll COM-library, which containes Microsoft Internet Explorer functionality.

Thank you Seraphim
 
I tried to add reference to older version of mshtml.dll (Visual Studio
2005) with right clicking the project -> references -> add reference
and i've chosen the one mshtml.tlb from custom directory. But in
'control full path' is written that it's referencing to the system32-
dir's one. How should I add it not to automaticaly switch to my system
version and how should i work with the added library in my source
code? Thank you
 
Back
Top