Tagged Questions

ActiveX is a framework for defining reusable software components in a programming language independent way.

learn more… | top users | synonyms

63
votes
1answer
2k views

How to add property to property map without class explorer?

I've got a new question after answer on this question Pass parameter from page to ActiveX How to add property to property map without class explorer? Need to add the property for object and class ...
15
votes
6answers
54k views

ReportViewer Client Print Control “Unable to load client print control”?

Has anyone come across this issue? Seems MS have broken it with their own update: A number of people have reported problems using the ActiveX print control in the report viewer after ...
11
votes
2answers
201 views

Creating objects suddenly begins failing after they have been loaded in memory successfully

Behavior: Application is loaded and being used as expected. Suddenly, a particular DLL can no longer be loaded. The error message is: ActiveX component cannot create object. In each case, the object ...
11
votes
8answers
3k views

Is there a way to force IE to unload an ActiveX control?

We have some dynamic HTML pages which include an <OBJECT> tag that instantiates an ActiveX control. The user may then navigate to another page, which contains an <OBJECT> tag that points ...
10
votes
3answers
2k views

Is Google Chrome embeddable?

I've asked myself if one can embed the google chrome browser engine in an own application. I'm using Delphi 2009. There's an IE ActiveX wrapper component delivered with the IDE. Also, there's a ...
9
votes
5answers
751 views

How many people have abused your 'with source' purchase option?

I'm interested in finding something out. In Delphi the default since the begining when buying components has been to be able to purchase them with source (even if it might be a slightly more ...
8
votes
4answers
207 views

How can one detect copying a link in a browser?

Yesterday I had a chat with a taxi driver and upon mentioning that I am a programmer, he told me that a couple of days earlier he had experienced the following: upon trying to copy the URL from the ...
8
votes
3answers
595 views

How to show the ActiveX Yellow bar?

I'm trying to set up a webpage that downloads the OCX and installs it with the user permission when the user right click in the yellow bar Note: it's a business app and I know... IE, but 95% of ...
8
votes
2answers
853 views

Need PDF viewer control - tried a lot

I'm looking for a component to view and print PDF files from Delphi/C++Builder. Delphi or ActiveX, not .NET. The license must be for royalty free distribution and the viewer must not require Adobe ...
8
votes
3answers
2k views

Delphi 2009 COM/ActiveX Type Library support stability

Referring to TLB and maintenance issues ... My question to people (often) using the new COM/ActiveX type library support in Delphi 2009: How stable is the implementation? Especially, I'm interested ...
8
votes
9answers
9k views

Blocking dialogs in .NET WebBrowser control

I have a .NET 2.0 WebBrowser control used to navigate some pages with no user interaction (don't ask...long story). Because of the user-less nature of this application, I have set the WebBrowser ...
7
votes
3answers
402 views

Web Direct Print Plug-in

We all know that it's impossible to do native print in a browser that bypasses the browser's print dialog, however, we have the need to do a direct print, ideally where we could also select a ...
7
votes
2answers
958 views

How does YouTube embedding work without a classid in the object tag?

A typical code fragment obtained from the YouTube embed feature looks like this: <object width="660" height="405"> <param name="movie" ...
7
votes
4answers
1k views

Can you create a HIPAA compliant Amazon S3 Web Application?

I am facing some questions when trying to design an S3 application using ASP.NET MVC and trying to stay HIPAA compliant. My initial plan was to require an SSL connection to my web server, encrypt the ...
7
votes
2answers
2k views

Test if ActiveX installed with Javascript?

Is there a way to test if an ActiveX control is installed using Javascript?
7
votes
3answers
698 views

Java SWT interop with COM - putting a float[] into a Variant?

In my Java SWT application I'm hosting an 3rd party ActiveX control. I'm using OleClientSite to do this. // Ah, this works. :-) OleAutomation comObject = new OleAutomation(...); There are 2 easy ...
7
votes
4answers
5k views

What can you do with COM/ActiveX in Python?

I'm thinking that I'm going to have to run monthly reports in Crystal Reports. I've read that you can automate this with COM/ActiveX but I'm not that advanced to understand what this is or what you ...
7
votes
2answers
998 views

Windows 7 & VB Classic Code: Any runtime issues?

Microsoft has promised that VB6 code will continue to work on Windows 7, but has anyone noticed any gotchas specific to running VB6 code in the Windows 7 RC? And for that matter, any issues with COM ...
7
votes
2answers
1k views

Windows Media Player Ignoring Me

I'm the guy who was here a while back asking about controlling Windows Media Player via Java. I've made progress, but I've hit a vexing problem, so I'm back looking for help. I followed the advice I ...
7
votes
6answers
17k views

ActiveX component can't create object

I have just installed a third party app on my Windows Server 2008 server and I get the "ActiveX Component can't create object" Message when I try to access using a CreateObject in VBScript. It is ...
7
votes
3answers
9k views

C# COM DLL - do I use REGASM, or REGSVR32?

I am building a C# ActiveX DLL... do I use REGASM or REGSVR32 to register it? How do I register the 64-bit interface vs the 32-bit interface?
6
votes
5answers
288 views

How to prevent re-entrancy of WPF event handler during ActiveX method call?

We're calling methods on an ActiveX component from within a WPF and STA application. This calling is late-bound performed via: res = ocx.GetType().InvokeMember(methodName, flags, null, ocx, args); ...
6
votes
2answers
150 views

Can I have JavaScript select printer to use?

One of our intranet applications needs to print out to a non-default printer. Of course people regularly forget to select the correct printer. I'm aware that you can not do this normally via ...
6
votes
2answers
287 views

Windows 7 Gadget not releasing ActiveX object

I'm working on a Windows 7 gadget that needs to pull data from an excel document. The problem is, is that the Excel process won't unload after I've retrieved the data I need. Here's the code I use ...
6
votes
2answers
634 views

How do I create an MDI child window from a Delphi 5 ActiveX dll, and embed it in a Delphi XE MDI parent?

Is there a way to create an MDI child window from an ActiveX dll written in Delphi 5, and to embed it in a MDI parent window created from a Delphi XE windows client application? If not, is there a way ...
6
votes
5answers
505 views

Are .OCA files necessary for program execution?

In the system32 directory I saw an .OCX file with a corresponding .OCA file. I had thought .OCA files are used only by Visual Basic. Are they therefore unnecessary for program execution and could be ...
6
votes
2answers
311 views

Flash ActiveX API documentation?

I am trying to put a Flash ActiveX control into a Windows Form but I am running into a problem: a lack of documentation. The best I have found is a site called "F-IN-BOX" that has some documentation ...
6
votes
3answers
6k views

How do I Create an ActiveX (COM) in C#?

I am trying to create an ActiveX controller. I using VS2010 (.Net4) I need to create a COM object (in C#) and have no Idea how to get started (what type of project to use ect.) Thanks
6
votes
2answers
3k views

GetObject and VB6 ActiveX exe

The VB6 help on GetObject says "You can't use GetObject to obtain a reference to a class created with Visual Basic" (the very last sentence!). My VB6 GUI exposes objects as an ActiveX exe, for other ...
6
votes
3answers
2k views

How can I hook up to Excel events in Javascript

In a client-side web application, I would like to: open an Excel spreadsheet, export some application data to Excel, allow the user to work with it, and when they are done, read the (potentially ...
6
votes
6answers
2k views

Win32: Registry entries required to register an ActiveX control?

i need write the code that runs when DllRegisterServer is called. i.e. when someone calls: regsvr32 myActiveX.ocx i'm trying to find the definitive list of required registry entries (rather than ...
6
votes
6answers
20k views

How to handle an ActiveX event in Javascript

This is somewhat of a follow-up to an answer here. I have a custom ActiveX control that is raising an event ("ReceiveMessage" with a "msg" parameter) that needs to be handled by Javascript in the web ...
5
votes
1answer
58 views

How to view VB6 control-level variables in WinDbg?

I have a crash file where I can see that one of my own VB6 user controls is responsible for the crash; i.e. one of its methods is part of the stack trace and I can see the line responsible. From ...
5
votes
2answers
183 views

TreeView in all browsers using JQuery instead of VBScript in ActiveX Control

There is a TreeView which our team has been using now for three or four years which provides our Internet Explorer users the ability to simply view data from both an MS Access database and MSSQL 2005 ...
5
votes
8answers
555 views

Communication between applications

I have 3 choices to use : sockets, activeX, com , in order to communicate between applications on one computer. Which is faster ?
5
votes
1answer
185 views

How to implement Website security based on client hardware or other solution?

I have two websites (one asp classic and the other asp.net) which we would like to implement some kind of security based on the client's hardware. We want something other than a password which could ...
5
votes
2answers
497 views

Writing a simple ActiveX control for IE that has one method

I'm learning how to write a scriptable ActiveX control. My goal is to have a tiny control that can check to see if something is installed on the system. What I've done so far is: Create a MFC ...
5
votes
1answer
723 views

Formatting Excel Document in Qt

I am using Qt 4.5 and Windows XP. I need to create an Microsoft Excel Document that has data (some labels and values) from the Qt application. I need to format those data with some ...
5
votes
4answers
223 views

Switching from Windows Form to Web Form

I created a Windows Form executable in .NET 3.5 that uses a dll to communicate with a machine that scans checks. I'm eventually going to need to move from an executable to a Web Form that can do the ...
5
votes
4answers
1k views

How do I add MFC ActiveX control to an existing activex project

In visual studio 2008 I can create an MFC activex project and it presents a wizard to create a single activex control. I now want to create new controls within this project. I can't find any way to ...
5
votes
1answer
466 views

Is there a way to load a Crystal Report 9.0 file from a stream?

I am working with Delphi and Crystal Reports 9.0 ActiveX objects. I know that I can load a report from a file like this: crApplication.OpenReport(AFileName) However, I would like to store my report ...
5
votes
3answers
2k views

How to use IDispatch in plain C to call a COM object

I need to compile some code of mine using the gcc compiler included in the R tools (R the statistical program for windows), the problem is that I need to use IDispatch in my code to create an access ...
5
votes
3answers
1k views

Is there an equivalent to out-of-process COM EXE in .NET?

One of the nice things about COM/ActiveX was the out-of-process EXE. You could have an EXE which exposed methods and properties in a form usable by both other processes, including VBScript and ...
5
votes
5answers
5k views

A serious issue with jQuery and ActiveX security?

Has anyone not noticed that JQuery uses ActiveX controls? When a user has limited their activex security they will get script prompt popups and a yellow bar accross the top of their browser window. ...
5
votes
1answer
1k views

Need ActiveX control to embed Excel into a dialog

I'm building an "import from Excel" function. It has to be in a DLL, called from a non-MFC app. Has to provide an image of the spreadsheet that users can drag a select box around (to select cells), ...
5
votes
2answers
3k views

.NET ActiveX Component in IE - How to Get Browser Reference

I admit I know enough about COM and IE architecture only to be dangerous. I have a working C# .NET ActiveX control similar to this: using System; using System.Runtime.InteropServices; using ...
5
votes
2answers
3k views

Active X Control JavaScript

My coworker and I have encountered a nasty situation where we have to use an active X control to manipulate a web camera on a page. Is it possible to assign a javascript event handler to a button in ...
4
votes
1answer
199 views

Import chartfx to Delphi XE2

A number of delphi applications that I work with use an activex chartfx control. I realize that the company softwarefx stopped supporting delphi a while ago but we are transitioning to 64 bit builds ...
4
votes
2answers
254 views

Which Windows versions have preinstalled MSINET.OCX control

I have an old VB6 application that depends on MSINET.OCX. I'd like to know if I can distribute this application without registering MSINET OCX component. My target OSes are XP, Vista and Windows 7. Do ...
4
votes
3answers
50 views

Interfacing with hardware via a webpage

I have a project where I need to access a specialized scanner via a webpage (no TWAIN). As far as I know, the only technology that would let me access arbitrary client hardware from a webpage is ...

1 2 3 4 5 30