Tagged Questions
The tlbimp tag has no wiki summary.
5
votes
2answers
3k views
Visual Studio 2010, TlbImp generates .net 4.0 interops in 2.0 projects
In a C# project we add a reference to a COM object via the Add References setup pointing to a COM object which results in the IDE auto-generating the interop assembly. So this is fine and good, but we ...
4
votes
3answers
1k views
Lots of build warnings when COM objects ActiveDs or MSXML2 are referenced
After moving a project from .NET 1.1 to .NET 2.0, MsBuild emits lots of warnings for some COM objects.
Sample code for test (actual code doesn't matter, just used to create the warnings):
using ...
3
votes
2answers
190 views
What happens between the .NET interop layer and COM?
I am using COM in my C# .NET project.
However one of the methods I call is not acting as expected.
So I am curious to see what is happening between my .NET code, the Interop layer and COM.
I know the ...
3
votes
2answers
2k views
Where is the Wrapper Assembly Key File setting in VS 2008?
I'm trying to build an application that is strongly named. It is referencing a COM interop library that I add via the Add References dialog. It's been a while, but I seem to recall that in older ...
2
votes
1answer
203 views
Help needed with “The type library importer could not convert the signature for the member” warning in a trivial setup
Observe this most trivial IDL file:
import "unknwn.idl";
typedef struct _MyStruct
{
DWORD len;
[size_is(len)] BYTE *buffer;
} MyStruct;
[
object,
...
2
votes
3answers
150 views
How can I generate C# source code for a COM Interop library instead of an assembly?
When importing a COM library (either directly with tlbimp, or indirectly with visual studio add reference dialog,) is there a way to generate C# source code instead of a binary interop assembly, like ...
2
votes
2answers
211 views
How can tlbimp be used to specify different File and Assembly versions?
We are using tlbimp to generate interop assemblies. We would like to stamp the interop assemblies with both a File Version and an Assembly Version. However, the /asmversion option on tlbimp seems to ...
2
votes
2answers
154 views
Understanding .NET + COM interoperability
I'm in need of help on understanding the architecture when calling COM/DLL's created with TLBIMP.EXE, from a .NET application. The scenario is:
I have a DLL called XYZ.DLL which contains methods, ...
2
votes
2answers
507 views
Returning S_FALSE from a C# COM dll
I have a method defined in IDL as follows :
interface IMyFunc : IDispatch
{
[id(1), helpstring("method GetNextFunction")] HRESULT GetNextFunction(
[in,out] long* lPos, [out, retval] BSTR* ...
2
votes
2answers
1k views
Suppress tlbimp warnings in visual studio
In a visual studio C# project, it is possible to add references to COM libraries. Visual Studio will then use tlbimp.exe to generate the interop assembly when building the project. The reference looks ...
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 ...
2
votes
2answers
600 views
Referencing a COM assembly in Visual Studio vs converting a COM assembly via tlbimp.exe
When I import a COM assembly (dll) in to a Visual Studio project by adding it as a reference I can use the generated equivalent common language runtime assembly without issue.
However if I try and ...
2
votes
1answer
2k views
Manually generate ActiveX wrapper after TLBIMP-ed dlls?
I have several ActiveX components that needed to be accessed from a C# project.
I can import them via Visual Studio's add reference dialog, which will also automatically generate wrappers class. ...
1
vote
0answers
206 views
Warning when using embedded Interop-Types
I have recently updated one of my C# solutions from VS2008 to vs 2010 to utilise the Embedded interop types feature so I can stop shipping the library of interops we currently have to due to ...
1
vote
1answer
370 views
DCOM server and client both written in .NET
I'm developing a DCOM server in .NET 4 (VS2010, C#). By itself, this is working fine.
Now, I also need to develop a .NET client for this DCOM server, but I am unable to add a reference to the ...
1
vote
1answer
99 views
Is COM Wrapper generated by tlbimp is OS version dependent
We are generating Interop dll for wuapi.dll using tlbimp.exe. Is this interop dll genrated by tlbimp.exe dependent on OS version?
Are there any dependencies on wuapi.dll that has to be packaged if ...
1
vote
1answer
760 views
How to Extract TypeLib from a COM exe on Command Line
I've recently had need to produce an interop assembly. After some googling I discovered tlbimp.exe. My next problem was that my COM library did not come with a .tlb file. Further googling revealed ...
1
vote
1answer
207 views
How to make .NET not to use registered TLB to marshal calls to COM methods?
Current configuration is:
The main application is unmanaged.
It contains DLL, containing TLB, which describes functions, exposed to COM model.
To support ASMX web services, it loads .NET ...
1
vote
1answer
509 views
Convert TLB file to assembly with custom assembly information
I am using tlbimp.exe to generate an assembly from a TLB file. I know that I can use the "asmversion" command line switch to set a custom version number, but how do I set the other information? I ...
1
vote
1answer
542 views
How to use tlbimp.exe's /keycontainer switch?
Anybody have an example of how to use tlbimp.exe's /keycontainer command line switch?
The googles...they don't help. It's always /publickey, or /keyfile. No example of using /keycontainer.
1
vote
2answers
3k views
TLBIMP.EXE - Error TI0000 - *.dll is not a valid type library
While building our project on the Build Server, the compilation fails with the error message:
TlbImp: error TI0000 : The input file 'C:\*.dll' is not a valid type library.
We tried to manually ...
0
votes
0answers
15 views
tlpimp COM .net
I created a dll for my .net 3.5 app from a COM component using the TLPIMP. In using it, I'm noticing that for some objects I'm getting back a type of 'object' and none of the properties or methods are ...
0
votes
1answer
8 views
Tlbimp .net and COM components still need to be registered
I took a COM DLL and used tlbimp to create a DLL I could use in my .net 3.5 project. I'm getting an error though when try to use the COM interface and I'm wondering if I still need to register the COM ...
0
votes
2answers
30 views
Can Windows installer deploy an assembly based on the version of an external application?
I am developing a small program (a dll) in Visual Studio 2010 / .NET 4 that integrates with an external application (we'll call it ExApp) through COM interop. I am generating the interop assemblies ...
0
votes
0answers
29 views
tlbimp does not generate delegates to the events of legacy COM object
I have a legacy COM object which is described by the following idl file:
library MyGenericLib
{
importlib("stdole32.tlb");
importlib("stdole2.tlb");
[
...
0
votes
1answer
223 views
COM exception: “SerializationException: The input stream is not a valid binary format. The starting contents…”
I have a COM assembly (let's call it com1.dll) that I'm referencing in some C# code. When I Add Reference I see an Interop.com1.dll in under the References node. If I execute the application from ...
0
votes
2answers
193 views
shdocvw in managed C++
I am trying to use shdocvw in a managed C++ program. I have read COM Interop using managed C++ - CodeProject. I used the instructions in How to add references to a managed Visual C++ project to create ...
0
votes
2answers
130 views
.Net to COM Interop Tester
I made a class in C# that I am exposing to COM. I can register it just fine using RegAsm.exe.
I would like to test it before I send it off, but using TlbImp.exe gives me an error of "Type libaray was ...
0
votes
1answer
261 views
Unable to sign an imported msi.dll assembly using tlbimp
This seems so trivial, yet I can't get it to work..
I have an msi.dll wrapper (named Interop.WindowsInstaller.dll) which I need to sign. The way to do it is by signing it upon import (this specific ...
0
votes
2answers
671 views
Getting COM Exception 80040154 on different machine
I am getting following problem, can someone help please?
I used Tlbimp utility and converted VB6 COM DLL into RCW DLL. From my Visual Studio 2008, I used "Add Reference" and used that DLL in c# class. ...
0
votes
1answer
1k views
How do i use TLBIMP.EXE?
I've found it in my visual studio folder, but when i open it it simply loads and closes instantly. is that the right way to reach to it's functionalities ?
0
votes
1answer
762 views
The type library importer encountered an error during type verification
I am writing a C# application which has several COM references. When I attempt to build it I get the following error for some of them:
...
0
votes
2answers
651 views
using classes inside a COM exe from .Net
I have a .exe file I've been given which has COM classes inside it -- these are from C++, not .net ComVisible types
I'd like to use those classes inside my .net project, but I can't add a reference ...
0
votes
1answer
1k views
How can I get tlbimp to not automatically generate assemblies for referenced types?
I want to create an interop assembly from a type library using the tlbimp.exe tool that is included in the .NET SDK.
My problem is that the source type library is referencing a type in another ...
0
votes
1answer
350 views
Compiler Error when adding dll reference to managed c++ project
I am using VS 2008 and get compiler errors sporadically when adding a dll reference to a managed c++ file in my C++ project. I am trying to add a reference to the dll so as to be able to use smart ...
0
votes
3answers
970 views
Tool to import Type Libraries as C# code
Is there a tool to import/convert COM type libraries into C# code rather than generating an assembly? The TLBIMP tool and the TypeLibaryConverter class only generate assemblies.
I've had some success ...
-1
votes
1answer
79 views
Can tlbimp.exe generate interop assemblies with customized version info?
The Microsoft Type Library Importer tool (tlbimp.exe) generate interop assemblies without some version info, i.e. no company, no copyright, no trademarks and number version always set to 1.0.0.0.
Is ...