Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
3answers
13k views

Generate manifest files for registration-free COM

I have some applications (some native, some .NET) which use manifest files so that they can be deployed in complete isolation, without requiring any global COM registration. For example, the ...
14
votes
8answers
1k views

Reg Free Com with VB6 on Windows 7

I have some .NET code I use from VB6 code. I have always developed this on an XP machine by creating a VB6.exe.manifest file that listed the dependent .NET assemblies. For example, say my 2 .NET ...
12
votes
2answers
2k views

Use OCX without registering it

Is it possible to use an ocx (ActiveX Control) on a winform (probably adding it programatically) without first having the ocx registered with regsrv32? What I'm trying to achieve is to enable xcopy ...
10
votes
2answers
2k views

Is anyone successfully using registration-free COM with .NET components?

Until recently, we were happily using registration-free COM for our native and .NET COM components. However, we ran into a weird issue where our application started crashing randomly on windows XP SP3 ...
8
votes
5answers
3k views

How can you force VB6 to use the DLLs and OCXs from the app directory?

I want to put my dependent files in the app directory. I seem to remember that you can force VB6 to use the files in the local directory only. Any hints?
6
votes
4answers
949 views

Registration-Free COM Interop and Dependent Assemblies

We are working on an integration of a large MFC-based application with a handful of managed (.NET) add-ins. Communication with these add-ins is done via COM. Historically, we've just used the ...
4
votes
2answers
282 views

debugging COM free registration (c++)

I've built a COM client application that uses two COM server dlls; I want this application to run without COM registration - ie: winsxs / .manifests I get a (...almost expected...) "Class not ...
4
votes
1answer
353 views

How to do registration-free COM in a plug-in architecture

We use manifest files to do registration-free COM, as I've also elaborated on in this other question. Now we're trying to use registration-free COM with an application that supports plug-ins. The ...
4
votes
5answers
1k views

How do I use Reg-Free COM for a vb6 dll reference in a .net project?

I've been trying to solve this issue for a long time, and nothing seems to work. I have a COM DLL written in vb6. I add a reference to this DLL in .net, with the 'isolated' and 'copy local' ...
4
votes
3answers
2k views

Remote debugging in VB6

Is it possible to remotely debug a process started outside VB6? The application is a VB6 application with quite a few dll/ocx resources. I am attempting to setup a ClickOnce deployment, using ...
4
votes
2answers
657 views

Is it possible to use reg free COM with HTA applications?

Since HTA applications are hosted within MSHTA.exe how does one provide a manifest? Plus I assume providing a MSHTA.exe.manifest could potentially break other HTA apps?
3
votes
1answer
169 views

Does Reg-Free COM work with Interop?

What is the consensus here? I have a VB6 app using Interop to utilise .NET assemblies. Could I use Reg-Free COM to 'register' the .NET assemblies?
3
votes
4answers
788 views

vb6 xcopy deployment

Can any one tell me how to convert an legacy application which is vb6 ( COM dll's ocx and exes) to use Regfree COM . I tried opening the dlls in visual studio and created manifest file, but some of ...
2
votes
1answer
66 views

Using Activation Context API in C++ component

I am a c# developer currently working on some legacy c++ com components. I am trying to add activation context api code to the com components in order to call other com components without ...
2
votes
1answer
174 views

Can a Registration-Free COM component be used without registering it on the development machine?

I have a Registration-Free COM component I developed that is working fine on target machines without needing to register the component. It is in a dll that has tlb embedded, and an RT_MANIFEST ...
2
votes
1answer
401 views

Side-by-side (or registration free COM) and Delphi? [closed]

Possible Duplicate: Registration-free COM/DLL? I am supporting an application that uses a lot of ActiveX controls written in Delphi, primarily for aggregating applications together. These ...
2
votes
1answer
251 views

Why is it not possible to call RegFree COM and .NET from the VB IDE (VB6 & VBA)?

I have an example project with works when called from compiled VB6 but not from the IDE or from Excel's VBE. There are 3 DLLs QA.DLL, QB.DLL, QAW.DLL. QA is written in C#.NET, QB and QAW are written ...
1
vote
1answer
229 views

How to get registration-free COM working in managed/unmanaged interop

I have a unmanaged C++/ATL in-process COM object (in Unmanaged.dll) that I'm trying to use from a managed C# DLL (Managed.dll). However, I want I want to use registration free COM. I have it down to ...
1
vote
1answer
276 views

Setting up isolated COM for multiple projects

My solution consists of multiple projects all of which out type class library except one whose output type is windows application. The application references all the other projects. I also have a COM ...
1
vote
0answers
92 views

COM Components for Registration-Free Activation

I have managed application (named managed.exe) that uses unmanaged assembly (named unmanaged.dll). Until now we've create Interop.unmanaged.dll, the managed.exe application had reference to the ...
1
vote
1answer
127 views

Can you use a manifest file to tell a VB6 app .EXE to access certain versions of OCXs?

I have a VB6 app .EXE which uses Microsoft-created OCXs such as RICHTX32.OCX and MSACAL70.OCX. I experience problems with both these OCXs. Essentially this is a DLL-Hell problem. If I use a ...
1
vote
2answers
436 views

Registration free COM: VB6 Executable referencing VB6 DLL

So, I've got a single VB6 executable that references multiple VB6 COM DLLs. Is it possible for me to generate, on-the-fly, a manifest for the executable as well as a manifest for each of the ...
1
vote
3answers
348 views

Is registration-free activation possible for EXE (out-of-process) COM servers?

I know that we can use CoLoadLibrary and DllGetClassObject to get the IClassFactory interface and get the COM component interface without registering the DLL. But what about a COM component in an ...
1
vote
1answer
252 views

Probing .NET Assembly with Registration Free COM/.NET Interop

We have one assembly that is used by the VB6 executable via COM Interop. This assembly uses other .NET assembly (not available for COM). We have defined a .manifest for our VB6 application, so that we ...
1
vote
1answer
378 views

Events not sent to WPF based ActiveX control (COM interop) when using Reg-Free-COM

I have a WPF based ActiveX control (COM interop). I am able to use it correctly by registering the control. When I tried to Reg-Free-COM (using manifest files) the control seems to be activated, but ...
1
vote
1answer
237 views

Does .net calling COM which in turn calls other .net COM object works when using SxS and manifest files are used

I have a .net application calling to a COM component (C++) which in turn calls to another COM object implemented in .NET. This application is using Windows SxS capabilities and does not register any ...
1
vote
0answers
175 views

RegFree DLL with CPython using win32com module

I am currently using the win32com module of CPython to use a DLL. I know some people using IronPython to automagically get the list of functions provided by this DLL. They don't need to register the ...
1
vote
3answers
576 views

Microsoft.Windows.ActCtx on Windows Xp

These days I'm very much busy on developing an activex/com application. Some of our customers are working under heavily restricted windows environments. So i decided to make my application regfree. I ...
1
vote
3answers
643 views

Registration Free (Regfree) COM

We are using a COM Object automation model to make our application available to our customers. They are using for the most part python to access our applicaton interface. As we want to be able to ...
1
vote
3answers
443 views

How to register COM libraries at runtime?

Let's say I'm developing an application that installs COM component and installer registers them. This works great. Now the software is required to run from a memory stick. How can I register my ...
0
votes
1answer
29 views

How can I dynamically instantiate an ActiveX control from an .ocx file?

I would like to create an instance of an ActiveX control. Given the .ocx file and interface definitions in C#, how can I do this? I don't mean the usual way of adding a reference to the project ...
0
votes
0answers
28 views

Registration Free COM errors with EXE

I'm trying to use COM functions exposed by an EXE. I've created a C# project using Visual Studio 2010 (on a windows7/x64 machine) and added the reference to that EXE, then set the Isolated flag to ...
0
votes
0answers
38 views

call a RegFree COM vb6 dll with ocx dependencies from Excel

I used MMM to generate a manifest file to call a VB6 DLL with OCX dependencies via a VB6.exe client and this works fine Reg-Free on the target machine. an extract of the manifest file is as per ...
0
votes
0answers
48 views

Using Registration-Free COM with Windows Shell (IExtractImage)

I'm trying to use Registration-Free COM on my IExtractImage implementation. Within this class, I generate bitmap data which is used during Extract. The bitmap generation is planned on being improved ...
0
votes
1answer
107 views

How to debug registry free COM?

I have a messy situation wrapping a couple of 3rd party COM components. Actually it's one COM component and several .NET assemblies. The .NET assemblies in turn depend on the same 3rd party's internal ...
0
votes
1answer
154 views

registration free COM without copying the dll to the same directory as the executable

How can I consume a registration free COM object without copying the dll to the same directory as the executable? Is this possible? I would like a complete working sample or a detailed step-by-step ...
0
votes
1answer
74 views

Using Activation Context API with many dlls in different locations

I am using Activation Context API in a .Net client running in a location A to load a COM component reg-free in location B (which is completely different location to A, not a sibling/descendent etc. on ...
0
votes
0answers
169 views

How can I customize registration-free COM manifests generated by Visual Studio?

I'm trying to deploy an .NET application with a custom COM component through ClickOnce. Unfortunately the application does not work with manifests generated by Visual Studio to use the COM component ...
0
votes
1answer
172 views

Statically link COM DLL in C# (avoid regfree)

I have perhaps a silly question: We have a VC++ COM DLL (developed internally) and we have ported our main app to C# and used COM Interop, reg-free to access the COM dll. Everything works just fine ...
0
votes
0answers
64 views

reg free COM component has managed dependency

I am using reg-free manifest for the usual reasons. The only slight complication is that the native COM component depends on a managed dll (sybase driver) and I'm not sure how to specify this in the ...
0
votes
0answers
260 views

Reg-free COM - location of COM dll relative to client exe

I want to use reg-free com so that I don't have to register my legacy com component. However, I would like to be able to put the com dll in a location which is not in or below the directory of the ...
0
votes
2answers
428 views

Using registration free com in a .NET app

I'm trying to use a 3rd party COM DLL (I don't believe its a .NET component) from a .NET service without registering the COM DLL but I'm having no luck so far. I've copied the manifest files from ...
0
votes
1answer
92 views

Isolation mode (registration free) COM setting in VC++ 2008

How do I create a reference to an isolation mode (registration free) COM DLL in a VC++ 2008 project? In a C# project it is as easy as toggling an Isolated property on a reference. How do I do the ...
0
votes
1answer
80 views

Native.* assemblyIdentity with Registration-free com

I set Isolated=true to some COM library that I need to use registration free. Visual studio now created Native.* manifest files for each of my assemblies: Why "Native"? Can I change this? Can ...
0
votes
1answer
501 views

Activate a (COM Interop based) ActiveX contol using registration free com

I have a (COM Interop based) ActiveX contol that I am trying to use with registration free com. When the control loads the control is inactive (does not responds to events, control not fully rendered ...
0
votes
1answer
506 views

How to avoid manual editing of manifest file

My VB.Net application uses isolated activeX (outer), that depends on another activeX (inner), both are using registration-free-com. The generated manifest file contains only the information for the ...
0
votes
1answer
238 views

Isolated (Reg Free) COM component behavior

I have a rather awkward situation. I have one small COM exposed component (let's call it SmallCOM) which is a (Delphi) win32 dll, which I use from a managed C# assembly (through COM). I have one big ...
0
votes
1answer
60 views

multi-platform regisration-free COM with .NET app

I have a .NET application that uses a COM component. The application itself is "Any CPU", but the COM component has a 32-bit and 64-bit version. The article ...
0
votes
2answers
158 views

Can ASP Classic use registration free components?

Like the topic says, can ASP Classic use registration free components? This is on Windows Server 2003. If so, how do I go about doing that? If not, could anyone please provide some alternatives?
0
votes
1answer
140 views

Isolation-mode (regfree) COM references defined twice (build error MSB3180)

I have several C# projects in one solution which reference some isolation-mode (regfree) COM DLLs. Some projects reference the same DLL, and when I build, I get error [MSB3180][1]: COM component ...

1 2