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
3
votes
1 answer

Single Sign On through IE

I'm currently building a web interface that lists a load of data for data entry to peruse through. The website doesn't actually update our back end though. We have a vendor supported custom built Windows application which we use for our data…
Jonnny
  • 4,939
  • 11
  • 63
  • 93
3
votes
2 answers

Encapsulate ActiveX for JavaScript

I'm trying to develop an website that can use a specific mailing program (lotus-notes), but to do so, I need to create a Session with the application that usually was created using an ActiveXObject() object. The problem is that I won't be the end…
3
votes
3 answers

Hidding rows breaks activeX option buttons.located on those rows

I have scoured the internet and can't seem to find others having this same problem. I have a spreadsheet with multiple grouped ActiveX option boxes. The user is to go down the spreadsheet and select options from the boxes (usually yes no). The…
Rookz
  • 81
  • 4
3
votes
1 answer

How can I get the current Excel file in Office JavaScript API?

I am developing a tab pane app in Excel which needs to read the current document. In Word, the Office JavaScript API has the method Office.context.document.getFileAsync(), but this is not available in Excel. I can get the URL of the document with…
Paul T Davies
  • 2,527
  • 2
  • 22
  • 39
3
votes
2 answers

Suppress ADO Security Warning in JavaScript/HTM Page

I have a fully functioning site stored on a network drive along with an Access Database which acts as the site's database. Due to lack of server side code, I am forced to use JavaScript to create an ADO ActiveX object to connect to the database.…
Duncan Cowan
  • 495
  • 3
  • 12
3
votes
2 answers

New ActiveXObject('Word.Application') creates new winword.exe process when IE security does not allow object to be created

We are using MS Word as a spell checker for a few fields on a private company web site, and when IE security settings are correct it works well. (Zone for the site set to Trusted, and trusted zone modified to allow control to run without…
Mark Ott
  • 62
  • 2
  • 10
3
votes
1 answer

How to send multiple acknowledgement to client using IHttpAsyncHandler in asp.net

I have implemented IHttpAsyncHandler in my class to perform 5-6 long running process in background and acknowledge to client on start of each task. Earlier I was using one session variable and updating it with current status of task, and giving…
3
votes
1 answer

How to copy an ActiveX control over to another sheet preventing the name change of the control

I am using the code below to copy a command button from one sheet and paste it into another: Sheets("SRC").HasACustomName.Copy Sheets("TRGT").Range("O1").PasteSpecial When I paste it, it get's renamed from HasACustomName to CommandButton1. Can I…
user1283776
  • 19,640
  • 49
  • 136
  • 276
3
votes
1 answer

HTML Object Tag Loading ActiveX Object

I am trying to load two different activex objects using the html object tag. the problem is: if the first object tag loads the activex object, then the second should not load. the following html-
user2531191
  • 579
  • 10
  • 27
3
votes
2 answers

Uncheck all checkboxes across entire workbook via CommandButton

I would like to have a code that unchecks all checkboxes named "CheckBox1" for all sheets across the workbook. My current code unfortunately doesn't work, and I'm not sure why - it only works for the active sheet. Private Sub…
jcv
  • 561
  • 5
  • 12
  • 25
3
votes
1 answer

ActiveX component cant create object: Mercury.ObjectRepositoryUtil

I created a VB script that converts the Object Repository file (.tsr) of QTP to XML and then to Excel. This Excel file format is configured via the VB script as well. It works well however, I am trying to run this on a new machine and I get an…
user2034602
  • 51
  • 1
  • 1
  • 6
3
votes
2 answers

How to keep dropdown menu on top of ActiveX

I have a drop-down menu created by JavaScript on all pages and some columns have up to 20 items. This drop-down appears topmost over all content in Mozilla browsers but in Internet Explorer it gets partially covered when an ActiveX object is…
WilliamK
  • 821
  • 1
  • 13
  • 32