activex

Is there a way to run ActiveX components in Firefox through the use of a plugin?

不羁岁月 提交于 2019-12-09 12:11:42
问题 I have an ActiveX plugin that we need (if possible) to run in Firefox. Is there a plugin (or other way) for Firefox that will allow this? 回答1: I seem to have found a solution: http://code.google.com/p/ff-activex-host/ "This Firefox plugin makes it possible to use ActiveX controls in Firefox. It is based on the Gecko NPAPI and provides full access to the hosted control (events, functions, properties)." 回答2: You used to be able to in Firefox 1.5 but not any longer I believe, the plugin doesnt

barcode scanner in JavaScript? Or plugin/extension

别说谁变了你拦得住时间么 提交于 2019-12-09 11:12:15
问题 I'm looking at writing a USB barcode scanner interface to a web application (offline app). By this I mean that the scanner will be on the client machine not server. So I was wondering what the best design would be. I know I could write an ActiveX object or native plugin into some browser but this is not ideal, does anyone know if chrome extensions (in javascript) or firefox jetpack would support this kind of functionality. Any ideas? I would appreciate any leads to follow. Thanks All Guido

The good old overlapping menu, how to z-index an activeX

落爺英雄遲暮 提交于 2019-12-08 20:58:59
问题 I have an ActiveX on a page... I know ... ActiveX ... blarghhh! That for some logic business reason we had to go with ActiveX, but the problem is that I can't make the ActiveX <object> to be beneath anything else ... it's extremely weird! Live plain example and Live example with iframe wrapper You can try the example, but remember that the ActiveX only work in Internet Explorer, and no matter what version for the ActiveX, it will always run. This problem I'm facing is the overlapping one:

Passing pointer from managed C++/CLI to ActiveX C++ component

一笑奈何 提交于 2019-12-08 20:58:26
I have an ActiveX component built in C++. One of its methods has this signature: short Component::Method(short FAR* ptr) {} When the I add the ActiveX into my C++/CLI application the method signature shows as: short Compnenet::Method(short% ptr) {} I want to be able to correctly pass short* pSomething; variable value to this method. of course, the new signature doesn't accept passing arguments as short* and even if you try to cast to short% it doesn't give right results. Note: I don't have access to the activeX control to change. I can only confirm the value of address that that the activeX

《企业党务管理系统》论文笔记(十七)

╄→尐↘猪︶ㄣ 提交于 2019-12-08 18:12:30
一、基本信息: 标题: 企业党务管理系统 时间:2019 来源:知网 关键词:党务管理 二、阅读内容: ASP.NET技术介绍 ASP.NET通过在核心处理器上运行语言程序进行代码编辑,所搭载的架构出自Microsoft⑧公司的前沿技术,ASP.NET是语言编译程序,ASP.NET技术有几个显著的特性,既: 1、强大的适应性,他可以用在全部的平台上,并且简单可靠,好用。ASP可以与其他的系统实现无缝结合,可以选择你自己喜欢的语言,随意编写,方便快捷,满足客户需求,可以完美的一直代码,使得任务多样,简单。 2、简单性和易学性, ASP可以适应不同的代码语言,容易学习,适合所有初学者使用学习,编写简单、整洁。3、高效可管理性,它是Microsoft .NETFramework中一套用于生成Web应用程序和Web服务的技术,利用公共语言运行时(Common Language Runtime ),可以使用各种模块语言编写,具有高效的处理机制。 ASP.NET是一种为多处理器设计的语言编译程序,可以在不同的处理器上实现衔接,便于语言的便于,为编写者带来不同的体验,和ASP不同的是,ASP需要写明所有的代码。而ASP.NET只需要预写,不需要编写代码,这样,编码者工作量减少,使得编码工作能更好更快的完成了。 由于所需系统的界面是互动性的,需要有反馈,所以普通的静态画面无法满足这种需求

An activex control on this page might be unsafe

佐手、 提交于 2019-12-08 16:49:35
问题 I created a com component in C#, which I registered by using Regasm. I am able now to use this in IE by using ActiveXObject(...). However this only works when I change my IE security settings and allow to run unsigned activex controls, in which case I get the message: An ActiveX control on this page might be unsafe to interact with other parts of the page. Do you want to allow this interaction? I always want IE to allow this interaction without the prompt. Does anybody know how this can be

How to connect a C# ActiveX event handler in Javascript

一笑奈何 提交于 2019-12-08 15:48:13
问题 Utilizing several code snippets I've attempted to hook up an ActiveX object with a Javascript event handler. I'm unable to identify why the event handler isn't being called. Github Repository with project. Update By placing the javascript call to SayHello() in an 'onLoad' event, I was able to get the ActiveX event to fire. Now I'm looking toward the C# call, and how to hook it into the ActiveX object utilized by Javascript. (This may also have relied on enable local scripts from the Advanced

ActiveX/COM object doing OutputDebugString for use with IE from JavaScript

廉价感情. 提交于 2019-12-08 14:28:15
问题 This is specific to Internet Explorer. For certain reasons, I'm unable to use console.log . I'm looking for a simple ActiveX object, safe for scripting, that would allow me to log debug output from JavaScript for viewing with the excellent DbgView tool. The object should use OutputDebugString for that. Then I could simply use it like this: <script> function debugLog(str) { if (window.debugLogAx === undefined) { try { window.debugLogAx = new ActiveXObject("IEDebugTools.Logger"); } catch(e) {

What is Microsoft's roadmap for in browser applications? Silverlight, ClickOnce, ActiveX, dlls [closed]

情到浓时终转凉″ 提交于 2019-12-08 14:03:33
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 6 years ago . So here I am, first time windows developer (done java swing, iphone, flash/flex) and I'm confused by what technology Microsoft wants me to use for in browser rich applications. The application I'm designing is a file uploader that supports drag and drop from the filesystem,

How to sign activeX object in JavaScript

心不动则不痛 提交于 2019-12-08 13:39:19
问题 I have a function with ActiveX Objects in my Javascript file to simulate a F11 for fullscreen mode. I want to sign this code to avoid some security issue, anyone who knows how I could do it ? The code : function fullScreenWindow() { var el = document.documentElement , rfs = // for newer Webkit and Firefox el.requestFullScreen || el.webkitRequestFullScreen || el.mozRequestFullScreen || el.msRequestFullScreen ; if(typeof rfs!="undefined" && rfs){ rfs.call(el); } else if(typeof window