Tagged Questions
The typelib tag has no wiki summary.
11
votes
3answers
4k views
Typelib Generation and Installation with WiX
After asking about what Visual Studio does to register a COM Library, it became clear that VS did two things for COM registration:
Registered the COM Library
Creates and registers a Type Library
...
9
votes
3answers
6k views
Replicating Visual Studio COM registration with a WiX Installer
Once upon a time, a young, naive engineer thought it would be a good idea to separate out some of the functionality for his app into a COM component, written in C#. Visual studio had all the tools to ...
4
votes
1answer
681 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 ...
4
votes
2answers
787 views
Which is “better”: COM DLL or Standard DLL with a Typelib?
I put "better" in quotes because it's a qualitative question. I've been writing COM DLLs for a couple of years now and have only recently come upon, and successfully used, the standard DLL with ...
4
votes
6answers
1k views
Testing Delphi DLL crashes VB6 IDE
I've had my first go at writing a DLL in Delphi. So far so good. By using a typelib I've been able to pass Widestrings to and from the DLL without difficulty.
What's curious at the moment is that I'm ...
3
votes
2answers
650 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 ...
3
votes
3answers
162 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
1answer
179 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 ...
2
votes
2answers
3k 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 ...
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
717 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 ...
2
votes
2answers
345 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. ...
2
votes
2answers
466 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 ...
2
votes
4answers
473 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 ...
2
votes
4answers
558 views
Indirect Typelib not imported well from Debug dll
Using VC2005, I have 3 projects to build:
libA (contains a typelib, results in libA.dll): IDL has a line library libA { ...
libB (contains a typelib importing libA, results in libB.dll): IDL has a ...
1
vote
1answer
101 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',
...
1
vote
1answer
77 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
57 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 ...
1
vote
3answers
95 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
1answer
789 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
37 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 ...
1
vote
1answer
66 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 ...
1
vote
1answer
755 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
70 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
352 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
302 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 ...
1
vote
2answers
470 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 ...
1
vote
2answers
722 views
When To Change a GUID on a Type Library
I know that when you add/change/remove methods in a COM interface you're supposed to change the interface/coclass GUID but what about type libraries. When should you change the type library's GUID? ...
1
vote
3answers
954 views
How do I create a variant array of BSTR in Euphoria using EuCOM?
So far I've figured out how to pass Unicode strings, bSTRs, to and from a Euphoria DLL using a Typelib. What I can't figure out, thus far, is how to create and pass back an array of BSTRs.
The code I ...
0
votes
0answers
110 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,
...
0
votes
0answers
41 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
63 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 => ...
0
votes
0answers
21 views
type libraries and versioning. Can I change a disp interface?
I know I cant change a normal interface without changing the guid (and basically deriving a new interface).
so
Interface A
{
}
becomes
interface A2 : interface A
{
}
is this also the case for ...
0
votes
0answers
23 views
Exported typelib not getting updated
I am exporting DLL to a typelib(.tlb) using
"C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe" $(TargetDir)Project.dll /tlb:com.Project.tlb /codebase
It is getting registered succesfully.I ...
0
votes
1answer
37 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 ...
0
votes
2answers
113 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 ...
0
votes
1answer
100 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 ...
0
votes
1answer
181 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. ...
0
votes
1answer
279 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 ...
0
votes
1answer
492 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
215 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 ...