Internet Explorer Windows 7 64 bit

M

Mel Weaver

I'm trying to create an Internet Explorer object using the below code. It
works fine in XP and Windows 7 32 bit. But it using the Windows 7 64 bit,
which has a 32 bit IE and a 64 bit IE, it opens a 64 bit browser which does
not load the toolbar and extension in the add-ons. I'm looking for an idea
how to default to the 32 bit IE.

object IeApplication = null;
public IEHelper()
{
Type ieType = Type.GetTypeFromProgID("InternetExplorer.Application");
IeApplication = Activator.CreateInstance(ieType);
}
 
F

Family Tree Mike

I'm trying to create an Internet Explorer object using the below code. It
works fine in XP and Windows 7 32 bit. But it using the Windows 7 64 bit,
which has a 32 bit IE and a 64 bit IE, it opens a 64 bit browser which does
not load the toolbar and extension in the add-ons. I'm looking for an idea
how to default to the 32 bit IE.

object IeApplication = null;
public IEHelper()
{
Type ieType = Type.GetTypeFromProgID("InternetExplorer.Application");
IeApplication = Activator.CreateInstance(ieType);
}

This is a total guess... Build your code for 32 bit "x86", not "any cpu".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top