Tagged Questions

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
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 ...
2
votes
2answers
141 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 ...
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, ...
1
vote
1answer
78 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
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
1answer
83 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
408 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
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
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
2answers
454 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 ...