A type library is a standard format for interface descriptions. It can store interface or class meta-data and make them accessible for different clients. Type libraries enable clients to call interfaces without knowing their actual implementation.
0
votes
1answer
84 views
For Each not initialized [closed]
My function is used to replace an apostrophe, i.e. ' in any of an object's properties. The function uses the TypeLib library to achieve this, by looping through all the object's members, i.e.
...
0
votes
0answers
54 views
Linking a .tlb file to a .dll in Visual Express
Visual Express does not natively support resources, so how can I go about linking an existing .tlb file to my .dll? All the places I've seen use Visual Studio (evidently not Express) to open the .dll ...
0
votes
1answer
69 views
Can't Add Type Library After Upgrading Project From Visual Studio 2008 to 2012
Recently, I converted my Winform project from Visual Studio 2008 to Visual Studio 2012 and I am attempting to add a COM type library reference. The result is the following error message. Can someone ...
0
votes
0answers
56 views
Use TypeLib to get names of methods and properties
I have an ActiveX component which has a detailed Typelib also. Now I want to get the list of methods and properties of this component programatically preferably in C#.
Can anyone guide me how to go ...
0
votes
1answer
170 views
MFC add Typelib or ActiveX for OPOS
So at work I have been working for a few months on a OPOS driver for a few different things. I didn't create the project, but I have taken it over and am the only one developing it. So today I got ...
1
vote
1answer
127 views
Switch between two versions of the same ActiveX IDispatch based interface at run-time in a Delphi 6 app?
I have a Delphi 6 app that uses an ActiveX DLL to interface to another popular app (aka the "host" app for lack of a better word). The host app provides the integration DLL. I do not have the source ...
3
votes
1answer
88 views
How do I load a typelib to parse it in C#?
In unmanaged code I can use LoadTypeLib() to obtain an ITypeLib* pointer and use that to look into the typelib to find what interfaces it contains.
There is ...
0
votes
1answer
58 views
Warning MIDL2346 in Visual C++ 6 source: The specified lcid is different from previous specification
I have a strange warning in some code I'm trying to maintain. I'm currently testing it out in its current environment (Visual C++ 6.0, yes, I know, ancient) before moving it up to a more modern VC++ ...
0
votes
0answers
124 views
Type library as a resource - What can cause LoadTypeLib to fail?
I have created a type library for COM automation and want to embed it as a resource in my EXE file. I have added
1 TYPELIB "myfile.tlb"
to the RC file.
However, calling LoadTypeLib for this EXE ...
1
vote
1answer
108 views
Create .NET project references to two COM components when only the CLSIDs differ?
Brief:
How can I create two references in a .NET project to two ummanaged COM components that are identical except for their CLSID? They have the same ProgID, and the same Type Lib.
The Type Lib is ...
0
votes
1answer
542 views
Building class library project in C#
I am working on a existing c# class library project. I want to add few more class to it. This is then used in a new project. I have added the required classes to the existing typelib project, but when ...
0
votes
1answer
116 views
How to create a Type Library of System32 dll?
I need to use msctf.dll(COM server for Text Service Framework).I used REGASM to create a tlb file.I am using .NET 4.0 and Visual studio 2012 .
Command:
REGASM c:windows/System32/msctf.dll ...
0
votes
0answers
55 views
How to find signatures in a non-COM dll for #import into c++
I have a 3rd party dll that appears to be native C ( Dumpbin shows all C functions). I don't have a lib or .h files. However when I reference this dll in a C# program it magically knows the signatures ...
0
votes
1answer
54 views
Data types from web service seeping into COM TypeLib
I have a small .NET component, exposing COM interface to legacy clients. The interface itself is very simple (4 methods) and parameters are all of simple types (strings, ints, etc.). The component ...
0
votes
2answers
187 views
python IDispatch client without type library
I'm trying to use with Python a COM server which expose only the IDispatch interface and have neither IDL file nor type library for it. I do have documentation for the different methods and how to use ...
1
vote
1answer
188 views
Autogenerated C++ class from COM TypeLib doesn't return SAFEARRAY in method
Let me begin by stating, I'm not a COM developer. I know standard C++, C#, and Java.
I have a C# library that will be called from Managed C++. I've added C++ classes using Visual Studio 2010 --> MFC ...
1
vote
2answers
383 views
What decides whether RegisterTypeLib writes to win32 or win64?
I am working with two ATL-based COM projects.
The both implement DllRegisterServer as just
STDAPI DllRegisterServer(void)
{
// registers object, typelib and all interfaces in typelib
return ...
0
votes
0answers
110 views
using typelib's of different versions in same project
I'm using a version of a COM server (in C# project via COM-interop). In a newer version of the same COM exe, there are additional methods added. I want to add the newer exe to same project and ...
0
votes
0answers
476 views
Inno Setup not updating registry using regtlibv12
I'm testing our inno setup changes to address a new fix from Microsoft to register a backwards compatible type library for our VB6 application. Here's a link outlining all the details from Microsoft,
...
1
vote
1answer
301 views
How to generate a typelib for gir file with waf
I use the following wscript_build snippet to build a vala library with its gir file:
lib = bld.shlib (
features = 'c cshlib',
target = 'sample',
name = 'libsample',
vnum = '0.0.0',
...
2
votes
1answer
339 views
_Problem with generating PASCAL bindings file from PSDK IDL file
I was trying to generate type library from one of PSDK shipped IDL files, but whilst midl session completes successfully (ERRORLEVEL 0) no .tlb file was generated. Currently i do not have any idea ...
0
votes
1answer
128 views
Does dynamic work with IUnknown and Typelib
Currently I'm experimenting with C#4's dynamic programming and I did not completely understand under which circumstances the keyword dynamic works. It is clear to me that it works with IDispatch, as ...
0
votes
1answer
233 views
VC++: #import directive: how to specify a library version?
According to MSDN, there is version attribute but if you specify a wrong version number VC still compiles the code. For example:
// MSO.DLL (Microsoft Office, Object Library)
// Office 10.0 => ...
2
votes
1answer
199 views
Unable to remove COM [PrimaryInteropAssemblyName] typelib value using REGASM /u
I was hoping someone can point me in the right direction. I listed the problem in a few steps to hopefully clarify the issue.
I register a C++ DLL into COM using regsvr32.
I then use tlbimp with ...
1
vote
1answer
179 views
Registering and using an ActiveX / COM component that is created with an IDL with the UUIDs generated at runtime
I have an existing ActiveX / COM component that has been working well for some time now. This ActiveX component was initially designed to be used by one client application per machine. However, now ...
0
votes
1answer
84 views
php com_load_typelib working only the first time
Hey, I am using PHP 5.3 on IIS 7 (express) and planning to work with COM object. Everythings seems to work fine at first, I have an example, say like:
com_load_typelib("Insert.gt");
$gt = new ...
1
vote
3answers
426 views
Unregister type library on Vista
I've made a mistake in IDL file by increasing library version. After that I revert the version. Since the time I can't work with library, because VB6 still write : "There is new version of library * ...
1
vote
2answers
251 views
COM->.NET - can't access overloaded method
I'm trying to access a .Net library (The Image Resizer) from COM (jscript).
I've tried both IDispatch and class interface generation, as well as [ClassInterface( ClassInterfaceType.AutoDual)] on the ...
2
votes
1answer
4k views
Import TLB into C#
i want to import a Type Library (tlb) into C#.
How do i import a .tlb into a .cs code file?
Borland Delphi can import a .tlb into .pas by using the command line tool tlibimp.exe:
...
1
vote
0answers
80 views
How can we extract size_is relationship from PS(Proxy/Stub) files in COM?
I need to extract size_is and all other attributes such as "length_is","max_is" etc attributes information from proxy/stub in C# , as these information skipped out while making Type Library, so i ...
0
votes
1answer
199 views
Why not embed the typelib into the COM server and only ship it separately?
I'm analyzing a rather old COM server project in order to reuse some stuff from it and noticed a strange thing - in order to expose itself to the registry it implements a separate function different ...
7
votes
2answers
12k views
How to register a legacy typelib (.tlb) on Windows 7?
I have a new PC running Windows 7 and Visual Studio 2010, and need to register a legacy typelib (.tlb) to interface with an existing legacy application. However, regtlib.exe does not seem to be part ...
1
vote
1answer
123 views
Temporarily #undef macros when using #import directive for importing COM typelib
I'm trying to use a COM library in C++. I've got a #import "TheLibrary.dll" and it creates the tlh and tli files with the classes in the library.
Now, my problem is that the COM object exposes a few ...
2
votes
1answer
2k 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 ...
0
votes
1answer
298 views
COM Outlook addin ribbon buttons not responding in Korean Outlook 2010
I have a COM Outlook addin which implements a ribbon button in Outlook 2010. It's been working just fine for quite some time. Until someone tried to load the addin in the Korean version of Outlook. ...
5
votes
2answers
1k views
Why aren't TypeLib enums exposed as enums in Visual Basic 6.0?
I have a VB6 project that references COMSVCSLib and one of the methods makes calls to COMSVCSLib's SharedPropertyGroupManager.CreatePropertyGroup passing LockMethod and Process as parameters.
Cleaned ...
0
votes
1answer
642 views
Building an COM-interop enabled project without registering it during build
In Visual Studio 2010, I'm trying to build an COM-interop enabled C# project without registering it during build, but I DO require the assembly's typelibrary (.tlb) file, so I can import it from ...
2
votes
1answer
330 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 ...
4
votes
1answer
1k views
How to generate GIR files from the Vala compiler?
I am trying to create python bindings to a vala library using pygi with gobject introspection. However, I am having trouble generating the GIR files (that I am planning to compile to typelib files ...
1
vote
1answer
89 views
How to get calling convension of a function from type library?
How can I get the calling convention at runtime using type library whether using stdcall, cdecl, winapi or any other?
1
vote
2answers
459 views
Creating compound applications in Windows 7
I need to port a suite of Windows applications (running under XP with little security turned on) to Windows 7 with various levels of security, depending on how our clients may configure it. Each ...
1
vote
2answers
424 views
RegisterTypeLibForUser call doesn't seem to work - any ideas?
This is really a follow on question to a previous one, where I need to register applications, TLBs and OCXs per user, rather than into HKLM. I have written the following code - based on answers here ...
2
votes
2answers
487 views
Register applications via Registry table rather than TLBs
We register the capabilities of Delphi applications using TLB files. However, from reading MSDN documentation, "Installation package authors are strongly advised against using the TypeLib table. ...
3
votes
2answers
1k views
How do you find a COM's interfaces without typelib?
Is it possible to find all interfaces (classes, parameters, ect..) normally registered with Component Object Model's (COM) TypeLib even though the TypeLib is completely empty? If so how would you go ...
5
votes
1answer
1k views
Converting a stand-alone Delphi-made .tlb file to .ridl
How does one convert a stand-alone .tlb file created in a pre-2009 version of Delphi to a .ridl file using Delphi 2010? .tlb files that are part of projects get automatically converted, but this ...
0
votes
1answer
1k views
Unmanaged C++ tlh file not updating?
I have an IDL file with some interfaces in it.
[
object,
uuid(newguid),
dual,
helpstring("NewInterface Interface"),
pointer_default(unique)
]
interface INewInterface: IOldInterface
{
...
0
votes
1answer
250 views
Is it possible to add additional GUIDs to a typelib?
I have a typelib that describes some interfaces. As some of these interfaces are used as a category, I want to add the category IDs to the typelib. So the question is:
a) how can this be done in ...
1
vote
3answers
748 views
Overloads in COM interop (CCW) - IDispatch names include suffix (_2, _3, etc)
I have a managed assembly containing a few classes, and those classes have overloaded methods. I expose the assembly to COM/IDispatch callers via
[ComVisible(true)]
..and also setting the proper ...
3
votes
3answers
243 views
Names in the interop assembly have wrong capitalization
I have a VC++ COM component with a type library. The type library of this component declares an interface and a co-class:
[
object,
uuid( ActualUuidHere),
dual,
nonextensible,
...
2
votes
4answers
633 views
COM typelib doubt
A type library declares the classes, interfaces, constants, and procedures that are exposed by an application or dynamic-link library (DLL). A type library is usually a resource in a program file; it ...

