Questions tagged [activexobject]

ActiveXObject is the key/initial function to enable and reference an "Automation object" in a Microsoft programming environment or the Internet Explorer browser. It is used when the object should be accessed entirely in script with no visual components. See also the activeX tag.

See .
Strictly speaking, ActiveXObject is just the key/initial function to enable and reference an "Automation object" in a Microsoft-only, programming environment. Automation Objects are objects referred to entirely in code with generally no UI design component. For example, in Internet Explorer this is used to access an activex object without inserting it into the page DOM.

Some also seem to apply this term to the system-interface objects referenced by ActiveXObject().

ActiveXObject and activeX is a Microsoft proprietary technology that works only in Microsoft programming environments or on Internet Explorer.

References:

438 questions
2
votes
1 answer

How to create ActiveXObject in javascript function which is called using Silverlight

I am trying to call javascript function from my Silverlight C# file. (Able to call it). Then i try to create ActiveXObject object in order to launch notepad in javascript function. But Automation server does not allow to create ActiveXObject…
Jim
  • 21
  • 2
2
votes
0 answers

Support for Shell.Explorer.2

I use the Internet Explorer ActiveX component (Shell.Explorer.2) in my applications and my question is - will Windows discontinue support for this component? I read that Internet Explorer will not be supported from 06/2022 but I can't find anything…
2
votes
0 answers

How to create a ControlSource ms-access property in c++ without VB6

I'm trying to create a MFC ActiveX control with Visual Studio 2022, that should have a ControlSource property under Data Category when inserted in ms-access form. So that it would be possible to bind that property within ms-access. I found…
Bert1974
  • 21
  • 3
2
votes
2 answers

Find "my documents" path with javascript

I would like to determine the path of "my documents" folder with Javascript. I need it to specify the folder where I could store the logs of my application. Thanks
Celero
  • 445
  • 2
  • 6
  • 19
2
votes
2 answers

Issues with ActiveXObject in Angular 7

I am developing a small page/router component on a website using Angular 7 and its CLI. At one point I need to check if the user has allowed flash, I do this by doing so: checkFlash() { var hasFlash = false; try { hasFlash = Boolean(new…
255.tar.xz
  • 700
  • 7
  • 23
2
votes
0 answers

Excel VBA Sheet.Copy doesn't keep ActiveX Objects

this is question maybe not regarding to coding itself, maybe it is question about "Do you observed that problem?" In Excel I have template sheet with name "Template". This sheet contains row of ActiveX objects (images, which are used as buttons). I…
2
votes
1 answer

com.jacob.com.ComFailException: Can't map name to dispid. Random failures

We have developed a COM Object which is an .exe file and runs as a service in background. We are trying to connect to the object using JACOB. Introduction: On start up create an activeXcomponent and call Connect method of the object. Connect method…
2
votes
1 answer

Run executable (exe) program on client machine instead of on the server using ActiveXObject

I have developed an executable program and deployed it on my local machine. Also, I have developed an ASP.NET Web application and deployed it on the server. The ASP.NET Web application can call the executable program on my local machine using…
Ralf Von
  • 21
  • 3
2
votes
1 answer

How do I make the following code portable for browsers other than Internet Explorer?

I have a source code that works well on Internet Explorer,but fails to work on Chrome or Firefox. I want to make it portable.Please Help. Login