IdontNknowMyName
IdontNknowMyName

Reputation: 11

ActiveX not working in IE 11

I'm currently developing a web based scanning application. I am using twainDotNet to get and fire scanner events. The process is done through an ActiveX control. My ActiveX control works well in IE 10 for Windows 8, but it is not working for IE 11 on Windows 8.1, but it shows on the ManageAddOn section of IE

Please help me to solve this problem, if anything is not clear in my description please add a comment.

Upvotes: 0

Views: 1672

Answers (1)

Lance Leonard
Lance Leonard

Reputation: 3285

You didn't describe the differences in behavior between IE10 and IE11, so it's hard to guess what's going wrong, but a few points come to mind:

  • First and foremost, managed code is not supported for IE plugins. There are several issues involved, but the practical upshot is people in a place to know say you should not use managed code for plugins.

  • ActiveX controls need to be updated to support enhanced protected mode and other changes to the Windows 8 security model. It's pretty involved, but the technical details start here.

  • Finally, I'm sure you already know this, but make sure you're testing this on the desktop version of IE, as the Windows Store experience doesn't support ActiveX controls, that you've accounted for any of the potential 32/64-bit issues, and any of the other basics that might come into play.

Hope this helps...

-- Lance

Upvotes: 1

Related Questions