An OCX is an an ActiveX Control derived from the OLE paradigm. It is based on the COM (Component Object Model) and DCOM (Distributed Component Object Model).

learn more… | top users | synonyms

0
votes
0answers
12 views

Changing qlikview zoom level programmatically

I know this methods: ActiveDocument.ActiveSheet.FitZoomToWindow ActiveDocument.ActiveSheet.ApplyZoomToAllSheets But i want a method for change zoom level>> for example "Zoom to 75%" Is there any ...
2
votes
1answer
30 views

How do you set the “Friendly” name for a Visual Basic 6 ActiveX CLSID

I have an ActiveX control that I wrote in Visual Basic 6 several years ago. It's an OCX loaded by a CAB file and used in Internet Explorer. If you go to Tools|Manage add-ons in Internet Explorer I ...
0
votes
1answer
31 views

Suppress messages from embedded Windows Media PLayer

I'm working on a Windows Form Application in which I have embedded a Windows Media Player that lets you play video files. The unique thing is that I have changed the extension of the media files (for ...
0
votes
0answers
15 views

Application hang on reuse a qlickview ocx control when the control has encountered an error

My application has tow form 1) Main Form 2) Dashboard Form I used a qlickview ocx control on my "Dashboard Form" and i open my QVW files with this control and everything works fine.... But if my ...
0
votes
1answer
32 views

Use Office References and Treeview OCX from File

we have an over the years grown Access Database which is making use of a Treeview Element and the Excel Office reference. With some Windows Updates we ran into problems with the Treeview (throws ...
0
votes
0answers
38 views

MFC collapsible panel with user controls

I know a similar question has been asked before, but I did not get the answer that I need from there.. I want to know if there is a way in MFC to create collapsible panel which can include user ...
0
votes
1answer
30 views

Using the aximp WrapperTool with a COM library

I have an OCX library called CyberSc.ocx. Running the following command adds one entry to the COM tab of my Add References dialog box: regsvr32 CyberSc.ocx When I add to my project, I get this: ...
4
votes
1answer
748 views

“Object library not registered” when adding Microsoft Rich Textbox Control 6.0 (SP6)

I try to add Microsoft Rich Textbox Control 6.0 (SP6) control via Project -> Components... in VB6 IDE. The control is present in the list of controls. When I tick it and click OK/Apply, I get Object ...
0
votes
1answer
35 views

ActiveX method with variable parameter list?

I have a DLL that provides functions with a variable parameter list that are defined like my_func(int var,...) Depending on how my_func() is called it expectes more or less additional parameters. ...
0
votes
1answer
38 views

MFC-ActiveX is not refreshed/repainted automatically

I have a MFC-based ActiveX control, where some important things do not work. A size-event is never called and the controls contents are redrawn only when I click the border of the control (in ActiveX ...
0
votes
0answers
43 views

use activeX files in web programs to use in google chrome

my friend has a windows based program and recently asked me to implement that as a web base program. She wants to use web application in Google Chrome. the problem is, she used many ActiveX files ...
-5
votes
1answer
95 views

Need to include .ocx and .tlb files in VB6 package [closed]

Suppose, I'm using many .ocx and .tlb files in my VB6 program that are not provided by Windows. Now, If I want to run my program in a PC where these files are not present, should I have to install and ...
0
votes
1answer
95 views

How to add method to MFC-ActiveX

The question seems to be stupid since there are many explanations in internet, that describe how to add a new method that can be called by users of the resulting OCX later. Unfortunately it does not ...
0
votes
2answers
84 views

Issues registering DLLs and COM Components during MSI installer

I have a huge Windows Desktop application that I have developed. Part of this includes DLLs to manage capturing Video and Pictures, and another custom COM Component Interop that I did not write. When ...
2
votes
6answers
2k views

Object Library Not Registered When Adding Windows Common Controls 6.0

I am trying to install Visual Studio 6 on a Windows 7 32bit machine. The OS intall was from bare metal. I followed the instructions mentioned here (which I have used before) The install went fine ...
0
votes
0answers
44 views

Wrapper for IDL or tlb file

Is there a way to create VB Wrapper class for activeX control ? I have been successfully able to convert the interfaces to .tlb file but want to create a wrapper class for all coclass in the tlb or ...
1
vote
2answers
142 views

How to debug ActiveX Control by using a process of .NET application that uses it?

I wrote an ActiveX Control (OCX) in native C++ using VS2008. I can debug it correctly when I attach to the thread of Microsoft ActiveX control test container(TstCon32.exe) and my own native cpp ...
1
vote
1answer
31 views

Monitor OCX calls?

I have an OCX without documentation and need to use it. I've figured out most of the stuff, but, is it possible to monitor all the calls and arguments made by one software to that OCX? I've tried ...
1
vote
1answer
549 views

Excel 2010 MS Date Picker on worksheet was working suddenly not working

I run 32-bit Excel 2010 in 32-bit Windows 7. I have been using the "Microsoft Date and Time Picker Control 6.0 (SP6)" in multiple workbooks for more than a year now. Yesterday I opened the master ...
8
votes
2answers
170 views

ASP No such interface supported error when creating object

I have a windows forms application that has third party ocx controls. Following command is used to create an object at runtime. myObject = myApplication.CreateObject("ML.MFinder", True) this is ...
2
votes
1answer
253 views

vb6 ocx project - can run EXE directly, not in debugger

I have a VB6 ActiveX control project (creating an .OCX), which has several User Controls. The controls are being loaded by an EXE (also VB6). When I run the EXE directly, it runs OK, but when I try to ...
0
votes
2answers
230 views

attach ActiveX into win32 application

i create win32 application and i want to attach an ActiveX into so i proceed like this #include "stdafx.h" #include "test.h" #include <Windows.h> #include <iostream> #include ...
0
votes
0answers
93 views

using activex without MFC

I have an OCX file that i don't have source to, and i wont to use it in win32 application without MFC or ATL, so i proceed like this but i dont get a solution for many raison: #import ...
0
votes
1answer
57 views

Handle ocx errors in VB?

I have created a visual basic application and it uses an OCX resource for office documents. Now, while I use the application everything seems to work fine, but when i exit the application it hangs ...
0
votes
1answer
409 views

License information for this component not found. you do not have appropriotate permisson to use this functionality in designer environment

I have an old Legacy Application Developed in VB 6.0. They used some 3rd Party controls using IGSplash40.OCX,PVCalendar9.OCX etc..The code works fine in one server. They have installed Infragistics ...
0
votes
0answers
378 views

Register and unregister OCX dll

Why Register a DLL? I have a lot of basic doubts on DLLs and i have tried to put them in a listed Questions form as below: Why do we need to register a DLL? What happens when we register a DLL? When ...
1
vote
1answer
150 views

How can I debug a WIX installation that's not successfully registering one OCX?

I am trying to create an MSI that will place two OCX files in the Program Files (x86) folder as well as register both the OCX files. The first of the two OCX files (which actually makes use of the ...
0
votes
0answers
92 views

COM Object compiled in Delphi 2006: How to DEP enable it? [duplicate]

Possible Duplicate: How can I enable DEP/NX and ASLR on a Delphi 2006 or earlier executable? We have a very large Delphi 2006 project that we do not want to migrate to the current delphi ...
2
votes
1answer
206 views

How to add event handling to a control from a dynamically loaded OCX library in Exel VBA

In an Excel 2003 VBA project, I am using the TreeCtrl from MSCOMCTL.OCX. I add the control dynamically to a form in my application (see code below). I would like to handle the NodeClick event of the ...
3
votes
1answer
350 views

Excel 2003 on 64-bit Windows 7 automatically changes reference to SysWOW64\MSCOMCTL.OCX so 32-bit Excel complains

In an Excel 2003 VBA project I am using controls from MSCOMCTL.OCX. That is the VBA project has a reference to System32\MSCOMCTL.OCX. When I open that project in Excel 2003 on my 64-bit Windows 7 ...
0
votes
1answer
93 views

Running PSEXEC so files and directories are relative to target machine

Ok, I am having trouble registering OCX files on remote machines using psexec, but think I have figured out where my problem lies. Basically I have a script that runs the following command PSEXEC ...
1
vote
1answer
837 views

Registering OCX with regsvr32.exe and having it available for all users

I have a third party web application that relies on a particular OCX file to be registered on the user's computer. I have gone into the computer as an administrator and registered the file with the ...
0
votes
1answer
72 views

OCX in WPF application .net 4.0 - 4.5

I have to use an ocx in an WPF application. If i make a new project under the .net framework 4.5 It works perfectly. But if i try to make an application in any other .net framework VisualStudio ...
0
votes
0answers
42 views

ActiveX user control in html

Hi guys just a simple question, I have written an active x control that has a button, when i call the activex control via the tag , i can't see the button in the html page, I have tested that the ...
2
votes
2answers
275 views

Placeholder Text in VB6

I know this is an odd one, but is there a way to emulate the placeholder text functionality in VB6? If not, does anyone know of a good OCX control I could get somewhere that will do this? I'm sure ...
1
vote
1answer
309 views

How to use ActiveX(ocx) in java

I want to use the functions in an OCX , how to call it in JAVA? Please give me an example if possible. Thanks very much.
1
vote
0answers
297 views

Prevent VB6 from automatically upgrade ActiveX controls in a ActiveX dll project

When opening a visual basic 6 project, it automatically updates the activeX control to the latest version. I saw a post saying that this line must be added in the vbp file NoControlUpgrade=1 for this ...
0
votes
1answer
135 views

What version(s) of Infragistics NetAdvantage provides IGUltraGrid20.ocx?

Does anyone know where I can find a list of all versions of Infragistics NetAdvantage released to date? I am looking specifically for versions providing the control IGUltraGrid20.ocx.
1
vote
0answers
57 views

ATL_DRAWINFO.prcBounds values are wrong when the C# container having ATL OCX is closed and opened

I am placing a ATL OCX control on C# container and decreasing the size of the ATL OCX Control.Then i am closing the C# container.Now i set some property which is responsible to increase or decrease ...
0
votes
0answers
29 views

How to obtain own version number in C++ OCX file? [duplicate]

Possible Duplicate: How do I programatically get the version of a DLL or EXE file? Is there a good way to obtain my own version number in a program, stored in a VS_VERSION_INFO resource?
0
votes
2answers
280 views

VB6 Registration - DEP file

I have an app that I am moving to another server. It is complaining that it is missing TABCTL32.OCX. I have located this file on another server and I want to copy and paste it across. I have ...
0
votes
0answers
88 views

#include equivalent for script under microsoft script control (msscript.ocx)

I'm exposing scripting feature through my application. Basically, via script I expose my application object model & allow end users to write javascript code to use it. Now, a lot of users are ...
1
vote
0answers
39 views

How do I combine the controls from 2 or more C++ MFC OCXs into 1 OCX?

It has been decreed that we will merged several (C++) OCXs, all of which use MFC as a static library, into 1 OCX, to save the download overhead of multiple copies of C runtime. Management is afraid ...
0
votes
0answers
55 views

ocx and cab - is ocx is enough?

I have an ActiveX without additional DLL's. Currently it is a signed ocx file. Works fine when I ran it from local disk but over the network it didn't load. Must I use CAB?
0
votes
1answer
32 views

MSAccess error with a version of file on pc - OCX

I have an Access 2003 application that users recently started having issues with the day I put out a new version, one of the screens has a field that has a default value of 'date()', instead of ...
0
votes
0answers
634 views

How to call OCX function from java using Jacob

Hello I am new to Jacob. I want to use 3rd party ocx in my Java code. I'm not getting how to call ocx function from my Java code. I tried in many ways, but not able to identify the proper way. ...
0
votes
0answers
183 views

Cannot properly re-scale desktop in AxMsRdpClient6 when exiting full screen mode

I'm using the AxMsRdpClient6 client to create an embedded RDP window in my C# app. Only problem is that I can't re-scale the desktop size when exiting full screen mode. If I don't, the .SmartSizing ...
0
votes
0answers
150 views

Why does Dynamics NAV except to copy an OCX variable to another object and using it without complaining that a design time license is missing?

Scenario: Dynamics NAV Version: 6.0 SP1 On purpose no design time license for "Microsoft Common Dialog Control, version 6.0" is installed - so that means no VB6 or any Visual Studio version is ...
0
votes
1answer
1k views

Failed to load 'CrystalReport' from Crystl32.OCX

Whenever I try to run this application (I didn't write it) that uses Crystl32.OCX, I get the error... Run-time error '372': Failed to load control 'CrystalReport' from Crystl32.OCX. Your version of ...
0
votes
1answer
3k views

DllRegisterServer failed for comct332.ocx

I have a VB6 application I am trying to get working on a Windows 7 environment, however every time I start the application, I get the error: "Component 'ComCt332.ocx' or one of its dependencies not ...

1 2 3 4 5