Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
110 views

Freeing OleVariant after using CreateOleObject

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; ...
3
votes
1answer
681 views

How can I deploy a C# ActiveX object via a remotely loaded DLL (without prior registration) using IE8/IE9 and then access it with javascript?

I need to remotely load a .NET DLL that contains an ActiveX object (non-visual) and then access it via javascript using the new ActiveXObject() method. Currently IE8 is correctly loading this DLL ...
3
votes
1answer
284 views

How to get a IHTMLElement pointer to the <object> tag hosting an activex control

I have an ActiveX control generated by the FireBreath framework (http://firebreath.org). I need to get a reference to the <object> tag in the page that hosts the plugin from C++. If I were ...
2
votes
2answers
56 views

Anything wrong with this short XMLHttpRequest declaration?

In all the AJAX libraries I've checked out, XMLHttpRequest involves a lengthy declaration with tests or try/catch statements. I need to retrieve XML via a SOAP GET request, and I tested the following ...
2
votes
1answer
84 views

Searching and manipulating Excel data using JavaScript

I have a HTML web form with 5 text inputs and a button calling a JavaScript function. The function as it stands, will open an existing Excel file, find the last populated row, insert a new row below ...
2
votes
1answer
73 views

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 ...
2
votes
2answers
608 views

JavaScript: ActiveXObject in Firefox or Chrome (not IE!)

I am trying to create an ActiveXObject (to use FieSystemObject) but it's only supported in IE. Is there a way I can make it work in Chrome or FF? I need to read all the files in a specific given ...
2
votes
2answers
156 views

in JavaScript, when finished with an object created via new ActiveXObject, do I need to set it to null?

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? Eg, ...
2
votes
1answer
454 views

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. <html> <head> ...
2
votes
4answers
335 views

ActiveXObject problem

new ActiveXObject("Scripting.FileSystemObject") this activex works in ie but not in firefox anybodies know the equivalents to firefox,chrome,safari,opera etc? thanks in advance
2
votes
2answers
386 views

Freeing JavaScript's ActiveXObject()?

I'm calling a C# COM component using javascript: keystore = new ActiveXObject("RBCrypto.KeyStore");. I've noticed this instance stays around until I exit the browser. Is there anyway to "release" that ...
2
votes
1answer
193 views

PowerPoint printing using activex control

We have written an ActiveX control using C# to use it in Microsoft PowerPoint. The control has following Title: 'Test Viewer'. When I place the control in PowerPoint in edit mode, I see the title in ...
2
votes
1answer
396 views

Why does my .NET ActiveX control fail to register in Internet Explorer?

I am writing an ActiveX control to run in Internet Explorer. I am using C# and the System.Runtime.InteropServices namespace. When I register the control manually on my development machine using ...
1
vote
0answers
34 views

What is the difference between creating a COM instance through CreateObject versus ActiveXObject?

This has been touched on here in the second answer but I don't see how it answers the question (nor does the link provided). What can ActiveXObject do that CreateObject cannot, and vice-versa?
1
vote
0answers
45 views

Interacting with an ActiveX document using Javascript

I have a HTML page with an embedded ActiveX object. This object is referenced as an OBJECT tag. The activeX handles some data inside a listview-like control. I need to get the data inside that ...
1
vote
2answers
139 views

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
1
vote
1answer
190 views

How to get struts2 HttpServletReponse using xmlhttp request

My struts.xml part <action name="viewall" class="com.abc.csm.actions.GetAllConfiguration"> <result name="success">/success.jsp</result> </action> on Page load ...
1
vote
1answer
118 views

ActiveX Data Objects (ADO) in wcf not working after deployment

i am using ActiveX Data Objects (ADO) in my silverlight application to show the create database connectoin wizard .. data link properties dialog box .. this is create and showed in the background WCF ...
1
vote
2answers
3k views

AJAX problem with IE9 (and other IE versions)

I am having problem with XMLHttpRequest object in IE9, IE8 and probably IE7 too, although have not tested in IE7. It works without problem in FF4, Opera 11.01 and Chrome 10. First I would like to ...
1
vote
1answer
334 views

Javascript error “Object doesn't support this property or method” displays in DEBUG mode

I have a C# .NET windows application that will get HTML files and use them to display data. The HTML files will have javascript in them to help parse/display the data, and one of them uses an ...
1
vote
3answers
1k views

javascript XMLHttpRequest open php file and execute more javascript

I have a main page, call it Main.php. On this page, is a button that when clicked, sets a div's innerHTML (already on Main.php, called divResults) with the results from Results.php. When Results.php ...
1
vote
1answer
30 views

Using MEF with ActiveX Controls (*.ocx) Possible?

Geneally all MEF examples use class libraries as ".dll". Is it possible to use ActiveX Conrols (.ocx files instead of "dll" files") from MEF directly.? Best Wishes
1
vote
1answer
686 views

Send email in HTA using JavaScript and hide the sender's email address

I'm using an HTA at work with many options, now I'm trying to add a page that allows you to send an email directly from the HTA without opening MS Outlook. I'm using Outlook 2003. I tried two ways to ...
1
vote
2answers
454 views

Ajax call: What is the difference between new ActiveXObject(“Msxml2.XMLHTTP”) and new ActiveXObject(“Microsoft.XMLHTTP”)?

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 ? ...
1
vote
2answers
372 views

VB: get compiled DLL's calling application info; COM security

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 ...
1
vote
1answer
273 views

Why should I test for MSXML2.XmlHttp and Microsoft.XmlHttp version-independent ProgIDs?

I have read the MSDN blog post about it. And this question doesn't help me much either. As far as I can tell checking Microsoft.XmlHttp is enough. Can you confirm this bug? (POST enforcing) Is ...
1
vote
2answers
652 views

How do I create a deployable ActiveX control?

I have written a simple ActiveX control using Visual Studio 2010. I have registered this control on my development machine using regasm, and I can invoke the control in IE using Javascript's new ...
1
vote
1answer
2k views

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 ...
1
vote
1answer
447 views

how to use javascript to validate xml against schema in firefox?

I can do this in IE using ActiveXObject, however mozilla doesn't support ActiveXObject. Is there any way I can use JS to validate an XML against an XSD schema in firefox?
1
vote
2answers
1k views

Convert <object /> declaration to javascript ActiveXObject

I have the following declaration in my code: <object id="myObject" name="myObject" data="data:application/x-oleobject;base64,ab9qcMENN0WE41oij7hs8764yu+YEwAA2BMABB==" ...
0
votes
1answer
23 views

Pulling data from an ActiveX control in Internet Explorer 8

I'm being slowly driven mad at work having to manually gather data contained within an ActiveX object running in Internet Explorer 8. It's essentially a ticket system containing some key customer ...
0
votes
1answer
34 views

ActiveXObject(“Scripting.FileSystemObject”) not working for me

I want to add names of files of a specific folder to an JS's array, but nothing happens: var pics = new Array(); var x; var fs = new ActiveXObject("Scripting.FileSystemObject"); alert('x'); var fo = ...
0
votes
0answers
65 views

xmldoc.load giving - 2146697208 The download of the specified resource has failed

I googled this and some people said its an access issue, but I'm not sure my problem falls into that.. Trying to install this on a new server, it does works on one of the servers. Trying to find what ...
0
votes
1answer
112 views

How to open excel file using JavaScript code without using ActiveX control?

Is there any one that knows how you'd open an Excel document using JavaScript code and without using an ActiveX control object like var myApp = new ActiveXObject("Excel.Application"); ...
0
votes
0answers
85 views

new ActiveXObject(“InternetExplorer.Application”) missing window.document object

I have a weird problem with this code. Basically I am loading a new ActiveXObject ("InternetExplorer.Application") and putting a reference to it onto the IE window object. I then load up an HTML ...
0
votes
1answer
83 views

Create and write text file on C hardrive using javascript

How can I write text files on c:? I can create files on d: but why not on the other? Maybe there's some restriction on that. Here's my code openTxt.html <html><head> <script ...
0
votes
1answer
36 views

Parse script output from shell wanted in JScript

I want to execute a command and parse the output from the shell. I am using JScript inside TestComplete. I already found out that I can run commands using WScript.shell. But I do not know how to parse ...
0
votes
0answers
95 views

getting file contents without using ActiveXObject under IE9

I'm looking for a mean to get file contents without using ActiveXObject(...) because it seems to be broken under IE 9, even if "Activex" is enable... Beyond several security matters. The best thing ...
0
votes
1answer
48 views

Remove the nasty 3D Border from an ActiveX Control within a C# WPF Application

I am using the Microsoft MapPoint 2011 ActiveX Control in a Windows Forms Host within a WPF Application and try to remove the nasty 3D Border. I already tried to set the following Properties without ...
0
votes
0answers
60 views

Replace ActiveXObject - old asp.net site

ive gotta optimize our webiste, at the moment we got this function: <script language="javascript"> function run (server, domain, user, pass, auth) { connect = "-c: -h: -md: " server ...
0
votes
0answers
35 views

Looking for an organized list of ActiveX object IDs for embedding

I'm currently developing an application using Real Studio. Vaguely similar to Visual Basic, it provides the means by which to embed ActiveX objects inside an OLE Container. That said, I need an ...
0
votes
1answer
125 views

javascript or jquery fileSize

I was looking all over the web how i can get the file size on the client side so i found a few examples the first example was $(this)[0].files[0].fileSize but unfortunately it does not working in ...
0
votes
1answer
282 views

JavaScript ActiveXObject

I have a queastion about ActiveXObject in javascript. I have tryed this code in Mozila FireFox 6.0.2 var AXobj = new ActiveXObject("WScript.Shell"); AXobj.SendKeys(key); But the error console says ...
0
votes
2answers
101 views

how to open an application in windows from a browser [closed]

Possible Duplicate: Launch application from a browser I am working on a website for my work that will do multiple functions such as storing login information and launching multiple ...
0
votes
3answers
153 views

In JScript: Can I enumerate the methods on an object created via new ActiveXObject()?

This is really a question for Eric Lippert, or someone at Microsoft who's familiar with the implementation of the JScript engine. Can I do this: var obj = new ActiveXObject("My.ProgId"); var ...
0
votes
0answers
103 views

Calling exe from javascipt throwing error “unknown exception”

I am trying to invoke an exe from javascript using WScript.Shell. This code works for invoking notepad.exe, but not for an exe which I created and installed in the computer. I am getting an error ...
0
votes
4answers
138 views

How to launch an application using javascript?

I want to launch an application eg. notepad or MSword on click of a button using javascript function. I have tried ActiveXObject meant for IE. function runApp() { var shell = new ...
0
votes
1answer
121 views

Icefaces and ActiveXObject

I am trying to create a panelPopup with Icefaces JSF library. I use Netbeans and Glassfish. I properly installed the Icefaces Netbeans integration plug-in and created the small test project as an ...
0
votes
1answer
165 views

Creating xls in javascript using ActiveXObject

My code var fsobj = new ActiveXObject("Scripting.FileSystemObject"); var excelApp = new ActiveXObject("Excel.Application"); excelApp.DisplayAlerts = false; var wbobj = ...
0
votes
1answer
71 views

Need to create COM DLL to use in Scripting like “Excel.Application”

I want to create a COM DLL using VSS 2010 and need to register to Registry. My aim is I want use that created DLL like "Excel.Application", "Word.Application", "Wscript.Shell" kind-of. I want to ...

1 2