Tagged Questions
The tlbexp tag has no wiki summary.
5
votes
1answer
160 views
COM problem c# to VB6
I have a C# .Net 4.0 Application on the one hand and on the other a VB6 App. I created a COM Interface by making the Project COM Visible and actived register COM Interop.
I Tested the COM interface ...
3
votes
1answer
2k views
How to Register a Type Library without RegAsm.exe
I want to know if it's possible to register a type library without using the RegAsm tool. Here is my situation, which will hopefully explain why I want to do this:
I'm developing an assembly in .NET ...
2
votes
1answer
958 views
TlbExp.exe error:This assembly is built by a runtime newer
We are moving part of our server to .net 4.0. We already did the move to Vs2010 as a first step but did not change the target framework of any project.
As a second step I'm moving a specific part of ...
2
votes
2answers
873 views
Using tlbexp.exe on a COM dll
I am trying to set up communication between Centura and a COM .dll. (Downloaded from http://download.resip.fr for a database import)
Centura requires a .tlb file to be able to communicate to this ...
2
votes
1answer
151 views
tlbexp.exe changes method names' case
I have a rather strange problem.
I am exporting an interface from a C# library to COM.
I have enabled the 'register with COM' project setting, so it calls tlbexp.exe to make the type libs.
We use ...
2
votes
1answer
403 views
COM Interface question - .NET
Recently I was reading about interop marshalling but I still don't understand one thing. To make .NET assembly visible to COM I need to use tlbexp tool and/or regasm tool. To make COM visible to .NET ...
-1
votes
2answers
1k views
Exposing nested arrays to COM from .NET
I have a method in .NET (C#) which returns string[][]. When using RegAsm or TlbExp (from the .NET 2.0 SDK) to create a COM type library for the containing assembly, I get the following warning:
...