Tagged Questions
The type-library tag has no wiki summary.
30
votes
3answers
13k views
Generate manifest files for registration-free COM
I have some applications (some native, some .NET) which use manifest files so that they can be deployed in complete isolation, without requiring any global COM registration. For example, the ...
8
votes
3answers
2k views
Delphi 2009 COM/ActiveX Type Library support stability
Referring to TLB and maintenance issues ...
My question to people (often) using the new COM/ActiveX type library support in Delphi 2009:
How stable is the implementation?
Especially, I'm interested ...
5
votes
3answers
459 views
If I use a Type Library (.tlb) in a VB6 project, do I need to distribute it with the .exe?
If I make use of a Type Library in a VB6 project do I need to distribute the .tlb file (and perhaps even register it?) with the compiled exe on the target computer?
4
votes
3answers
1k views
Delphi TLB editor replacement
Do you know any good TLB editor (even commercial) that can be used instead of the one which comes with Delphi? It gives headaches in a lot of situations (big TLB, rename an entry ... etc.)
Thanks!
4
votes
5answers
2k views
Delphi and COM: TLB and maintenance issues
In the company that i work, we develop all the GUI in C#, but the application kernel is mainly developed in Delphi 5 (for historical reasons), with a lot of components made in COM+. Related to this ...
3
votes
2answers
855 views
How do I Import TypeLib as safecall vs stdcall in Delphi 2010
Delphi versions before 2010 had an option in the Delphi Environment that one could set: "All v-table interfaces". This would change the calling convention when importing type libraries. In 2010, the ...
2
votes
1answer
177 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
3answers
1k views
Using .Net classes through COM Objects in Delphi sometimes hangs
I have a set of libraries written in Delphi.NET (.NET 1.1) which I want to use in my Win32 (Delphi) application. For performance related issues, I've decided to follow the COM route.
Sometimes, ...
2
votes
3answers
775 views
Type Libraries in Delphi?
What is the best way to save a Delphi Type Library in SVN.
The file changes every time you compile the Application
The file is not saved in a readable form of AscII
It is very difficult to work ...
1
vote
2answers
88 views
How to have multiple type libraries in a Delphi project?
If you have a Delphi project and want to add a type library to it, you can pretty easily.
However, we want to be able to add multiple different type libraries. The Delphi XE IDE seems to force you ...
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
479 views
Error: The assembly “c:\MyAssembly.dll” could not be converted to a type library
I'm trying to build my project and I've suddenly started getting the following error when the project builds and the "Register for COM interop" property is ticked.
The assembly "c:\MyAssembly.dll" ...
1
vote
0answers
104 views
TypeLib name in Delphi 2007
When editing a type library for a COM DLL, it appears that in Delphi 2007, the type library name is always set to the name of the project. If I go and change that name, the change is ignored and ...
0
votes
0answers
12 views
VS2010 compiler cannot find a function declared in type library header
My error:
error C2039: error C2039: 'GetJobAssignment' : is not a member of 'Ecora_AgentManager::IAgentJobInfo'
c:\home\ecora_pm\pm\amscommunication\releaseu\ecora.agentmanager.tlh(1316) : see ...
0
votes
1answer
82 views
Get functions/objects of imported .tlb
I've got a program which shipped with a .tlb file to access some functions/objects (read variables etc.) with my own C++ program. I did a search and imported the .tlb file with:
#import "MyLib.tlb" ...
0
votes
1answer
57 views
How to include the type libraries in a visual c++ project?
I am working on a FireBreath project which makes a plugin application which wraps the functions of an ActiveX control. I even have the source code of the ActiveX control.
Based on a sample example ...
0
votes
0answers
20 views
Deciding which functions to show from Type LIbrary at Runtime
Excel uses the type library to display functions from an automation addin. The functions are shown in Excel's "Insert Function" dialog (after choosing the category).
What I want to do is to decide ...
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
407 views
Delphi Error E1026 File not found: “myprojectname.tlb”
I have a project let's call it Yellow.dproj, which I saved as Blue.dproj, to make some changes. There must be some COM/DCOM related code in this project, but I can't figure out where.
The error I am ...
0
votes
1answer
252 views
Importing interfaces in IDL from an external type library
I have two type libraries with COM interfaces that I wrote using ATL and Microsoft's IDL. I would like an interface in one library to inherit from an interface in the other.
Essentially, I would like ...
0
votes
1answer
147 views
Managing definitions in a COM type library with a lot of IDL interfaces
I'm creating a COM type library with over one hundred interfaces. Defining all of the interfaces and coclasses in a single library is unreasonable... the IDL file becomes thousands of lines long! So ...
0
votes
1answer
366 views
Ruby and WIN32OLE: Cannot call WIN32OLE_TYPE methods (Type Libraries)
Okay, so I'm doing some good OLE' (sorry) automation with ruby and I ran into a weird problem. I'm trying to extract some data from a Type Library. This works in VB:
Dim c As New ...
0
votes
1answer
276 views
How to consume and re-expose a Win32 type library using Delphi Prism
I currently have a Win32 type library created in Delphi which I need to consume, implement and re-expose via .NET. What are the steps necessary to bring the TLB into Prism so the interface can be ...
0
votes
1answer
298 views
How do you do a copy and paste in the Type Library Editor in Delphi?
Help
I am busy making changes to a type library in a Datasnap project.
How do I copy and paste text with in the type library editor ?
P.s. I am using BDS2006
EDIT 1
Is there a way to chnage the ...
0
votes
2answers
453 views
How to write a class library for OLE Automation?
I have Excel add-in which I add so many class modules that it is now very bulky. I want to convert it into a type library or a COM package so that I can re-use it for the other apps in the MS Office ...