Questions tagged [ie-plugins]

Web browser add-ons supplement Windows Internet Explorer with extra features, such as toolbars and ActiveX controls.

Web browser add-ons supplement Windows Internet Explorer with extra features, such as toolbars and ActiveX controls.

Several add-ons are preinstalled in Internet Explorer, but many come from the Internet. Add-ons usually require that you give your permission before they're installed on your computer. However, some might be installed without your knowledge. This can happen if the add-on was part of another program that you installed.

12 questions
8
votes
1 answer

What does RegAsm really do? Where are files copied?

We have a plugin for IE based on spicIE, the purpose is to connect to some external devices. To connect to those external devices, another company developed their token & DLLs. We need to have some ActiveX's and DLL's to do authentication by…
ahmad molaie
  • 1,408
  • 1
  • 21
  • 36
4
votes
0 answers

Can't get IID_WebBrowser2 on windows

I have this code and it not works: template STDMETHODIMP CFBControl::SetClientSite( IOleClientSite…
fryme
  • 251
  • 4
  • 15
3
votes
0 answers

IE BHO: How to Inject External Javascript file?

I am now porting one of my extensions to IE. It will be done in C#. I am looking for some smooth transition. My Chrome based extension does following once the page is loaded: Inject Script Tag having src of external JS file Inject CSS Style Link…
Volatil3
  • 11,721
  • 33
  • 112
  • 218
1
vote
2 answers

Seeing if user has Adobe Flash Player installed?

Possible Duplicate: How can I make my application check if Adobe flash player is installed on a PC? I need to make sure that the user has the latest flash player for internet explorer installed upon startup of the program, does anyone know how I…
user1026128
  • 23
  • 1
  • 4
1
vote
0 answers

The customization content in iframe for Dynamics Crm got messed up for one customer. CSS does not respond correctly

I am working on Dynamics Crm plugin. We add some new customization in lead view page and some other new pages. All these customization happen in iframe. These UI customization works perfectly on our machines. However, one of our customer is…
Tristan.Liu
  • 176
  • 1
  • 6
1
vote
0 answers

How to add properties to object registered in BHO from javascript?

Is there a way to dynamically add properties from javasript to object registered in BHO? i.e // javascript window.bho window.bho.foo = "New property"; throws "Object doesn't support this property or method" solution must works on .NET 2.0…
user900140
  • 11
  • 2
0
votes
1 answer

Writing plugin for IE

Do you have any idea how to create IE plugin which will save to log file time of page load? This plugin should report start time (when user clicks go button) and end time (when page is completely loaded). I prefer .net framework examples, but if you…
user1013552
  • 313
  • 2
  • 5
  • 14
0
votes
0 answers

Form filling and web scraping from a website

Not a good way to start, but pardon me if this if off-topic, it seems like a programming question though... From an ASP.NET website I want to open a page in a new browser that has a toolbar at top and an iframe-like window at the bottom. The…
kpg
  • 551
  • 5
  • 18
0
votes
1 answer

Visual Studio cannot compile C++ project

The project is an IE plugin, which compiles on some computers, but not mine. On my computer, Visual Studio 2015 Professional, I get this error when rebuilding the project: Severity Code Description Project File Line Suppression…
Believe2014
  • 3,664
  • 2
  • 23
  • 42
0
votes
1 answer

How to open and perform write on a file in a DLL?

I am developing an internet-explorer plug-in (Browser Helper Object-BHO) in C++. In that, when the event BeforeNavigate2 is fired I want to save the URL to a file. Therefore, to open the file I wrote the usual code: FILE* fp; fp =…
gmaster
  • 107
  • 1
  • 13
0
votes
1 answer

Internet Explorer Plugin - Window gets focused

I am developing an add-on for Internet Explorer, (which is a lot harder that I initially thought), I cannot find an event for window Focus. I have an event for changing tabs, but not if the whole window gets focus for the first time Anyone has…
Ron Gross
  • 1,284
  • 5
  • 17
  • 32
0
votes
1 answer

Detect a plugin in IE browser - javascript?

Is it possible to detect whether my ActiveX plugin is installed or not in IE browser through javascript? Any pointers would be quite helpful. Update: In GChrome browser I can find the number of plugins installed by running navigator.plugins.length…
Naveen
  • 1,020
  • 4
  • 15
  • 37