|
-
Jan 26th, 2010, 12:41 PM
#1
Thread Starter
New Member
32-bit version of Webbrowser under XP64
I currently use vb 2008 on my 64-bit WindowsXP desktop. When surfing the web with my browser application, I'm constantly asked to upgrade to the latest Adobe flash player. But Adobe does not support a 64-bit version of flash. I happens because the WebBrowser control uses a 64-bit version of IE instead of the 32-bit version. Is it possible to select which one it uses?
-
Jan 26th, 2010, 03:53 PM
#2
Re: 32-bit version of Webbrowser under XP64
What is happening is your app is likely configured to compile for "AnyCPU" which means it can run as either an x86 or an x64 application based on what OS you run the application on. x64 systems can run 32 bit processes, so if you go into the compile tab for your project, and click the advanced compile options button, you can set it to x86 which will force it to run under x86 regardless of the OS. This means the webbrowser control that will be used will be the x86 version of IE and will allow for the plugins you need.
-
Jan 27th, 2010, 02:47 PM
#3
Thread Starter
New Member
Re: 32-bit version of Webbrowser under XP64
 Originally Posted by kleinma
What is happening is your app is likely configured to compile for "AnyCPU" which means it can run as either an x86 or an x64 application based on what OS you run the application on. x64 systems can run 32 bit processes, so if you go into the compile tab for your project, and click the advanced compile options button, you can set it to x86 which will force it to run under x86 regardless of the OS. This means the webbrowser control that will be used will be the x86 version of IE and will allow for the plugins you need.
Thanks Keinma!
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|