Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
243 views

Register managed assemblies with COM without using the GAC

I'm wondering if it possible to register assemblies with COM without having to register it with the GAC. We need to deploy some .net libraries that are exposed to classic asp using a CCW. But ...
4
votes
1answer
83 views

How does the .NET COM Callable Wrapper generate IIDs?

Viewing the generated TLB file created by the CCW though the OLE/COM Object Viewer shows the IID remains constant unless I change the design of the interface (which is correct behaviour), my concern ...
4
votes
1answer
3k views

How to embed .tlb as a resource file into .NET Assembly DLL?

We're using our .NET Assembly DLL within native C++ through COM (CCW). Whenever I make new version of my DLL, I have to send two files (.dll and corresponding .tlb) to crew that's using it in their ...
3
votes
1answer
2k views

calling C# from c++ com add-in

I have a COM add-in written in C++ (not C++ / CLI). I want to call a C# library objects/methods from this C++ com library. I guess the CCW comes into picture here, which i am currently reading about. ...
2
votes
2answers
280 views

Code completion in CounterClockWise?

I am a first-time user of CounterClockWise, the Eclipse plugin for Clojure, and it appears that code completion just won't work. I keep wondering whether the problem lies between my keyboard and my ...
1
vote
1answer
215 views

COM Interop - Multi-Threading in a COM Callable Wrapper

Is it possible to use multi-threading in a .NET COM callable wrapper DLL assembly? For example, I have a .NET assembly dll that exposes a .NET FTP library to COM. Upload functions are currently ...
1
vote
1answer
176 views

Wrong Object Returned from COM Callable Wrapper

I have just made an update to a dll that is called from VBA within Powerpoint. All development went fine, but when I tried to deploy on another users machine I get a problem that I have no idea how ...
1
vote
4answers
6k views

How to register a .NET CCW with regasm from a Visual Studio 2008 Setup project

I have a setup project for a .NET Service Application which uses a .NET component wich exposes a COM interface (COM callable wrapper / CCW). To get the component working on a target machine, it has to ...
0
votes
1answer
42 views

Using constructors on the Sub New() for a CCW

I'm trying to create a COM Class Library for my VBA Project and one of the limitations I've seemed to have stumbled across is using constructors on the New() subroutine. After creating the new COM ...