Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

System.Windows.Forms.WebBrowser : force X86?

This object always uses the default on the system, so on an x64 machine, it will use an x64 Internet Explorer object. Is there any way I can force it to use the x86 IE? The web page element the browser accesses does not work on x64 and is out of my control.

like image 788
heap Avatar asked Oct 14 '22 05:10

heap


1 Answers

You can force the Forms Application to compile in x86 within the property pages of the Visual Studio project. Properties -> Build -> Platform Target

like image 106
sshow Avatar answered Oct 18 '22 14:10

sshow