activexobject Questions
4
I am developing an Excel VBA application on my desktop machine. I have a DatePicker ActiveX control on my spreadsheet. It was working fine.
Then, while on travel, I was working on the application...
Blakely asked 17/5, 2014 at 19:6
4
Solved
I am trying to create an ActiveXObject (to use FileSystemObject) but it's only supported in IE.
Is there a way I can make it work in Chrome or Firefox? I need to read all the files in a specific gi...
Subalpine asked 11/8, 2011 at 7:54
1
I am trying to figure out a bizarre situation.
I have a workbook with many sheets. On one sheet, I have one ActiveX listbox (CTOverview.Listbox1). On a second sheet, I have a total of three listbo...
Rochellrochella asked 24/4, 2013 at 22:25
1
Solved
In C# I can write event handlers as follows:
var wdApp = new Microsoft.Office.Interop.Word.Application();
wdApp.DocumentBeforeSave += (Document doc, ref bool saveAsUI, ref bool cancel) => {
//d...
Rickie asked 18/1, 2017 at 6:54
2
Solved
I'd like to create a COM object in C#, and use it via IDispatch from JScript. That part is pretty simple.
I also want to implement simple callbacks on the COM object, similar to the event exposed ...
Hemline asked 24/6, 2012 at 5:16
1
Solved
I am trying to find a way of compiling the code in VBA on workbook open. I can do this manually by opening the VBA environment, going into Debug and "Compile VBAProject" but was wondering if there ...
Slifka asked 17/1, 2015 at 16:30
3
Solved
So at work I ran into this issue after I installed the most recent Windows 7 updates (including Microsoft Office 2010 updates) - the date up the update was today (Dec 12, 2014).
After the u...
Alveraalverez asked 11/12, 2014 at 2:0
1
In my web page, a JS block like this:
var classFactory = new ActiveXObject("X509Enrollment.CX509EnrollmentWebClassFactory");
// Other initialize CertEnroll Objects
It works fine in windows7(32b...
Ctesiphon asked 28/3, 2013 at 15:37
1
Solved
i have implemented this script for uploading files with ajax, it works perfect in other browsers except for explorer, i noticed that formData is not supported by IE9 and less, are there any alterna...
Suzysuzzy asked 18/3, 2013 at 11:0
3
Solved
In a Javascript program that runs within WSH and creates objects, let's say Scripting.FileSystemObject or any arbitrary COM object, do I need to set the variable to null when I'm finished with it? ...
Moncear asked 29/4, 2011 at 17:51
3
Solved
I have a ASP.NET application that allows users to export their staff's absences each month to Microsoft Excel. The application is currently generating the following exception
Exception: Cannot cre...
Selfregard asked 4/12, 2009 at 14:54
1
Solved
Here is a simple code:
procedure Test;
var
V: OleVariant;
begin
V := CreateOleObject('ADOX.Catalog');
try
// do something with V...
finally
V := Unassigned; // do we need this?
end;
end;
...
Rothberg asked 29/11, 2011 at 16:25
2
Solved
I hope both the object invocations are referring to the ActiveXObject.
But why are we passing two different parameters to work in IE.
1. Msxml2.XMLHTTP and
2. Microsoft.XMLHTTP
Are they both same...
Girth asked 22/10, 2010 at 3:6
2
Through COM, one can potentially gain absolute control over a target system. For example: using javascript's ActiveXObject object in IE, one can create certain objects which were designed to have d...
Flavio asked 15/10, 2010 at 1:32
1
© 2022 - 2024 — McMap. All rights reserved.