hot questions tagged type-library - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T13:23:21Zhttp://stackoverflow.com/feeds/tag?tagnames=type-library&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/465882/generate-manifest-files-for-registration-free-com10Generate manifest files for registration-free COMwcoenen2009-01-21T16:07:46Z2009-12-14T09:28:18Z
<p>I have some applications (some native, some .NET) which use manifest files so that they can be <a href="http://msdn.microsoft.com/en-us/library/ms997620.aspx" rel="nofollow">deployed in complete isolation</a>, without requiring any global COM registration. For example, the dependency on the dbgrid32.ocx com server is declared as follows in the myapp.exe.manifest file which sits in the same folder as myapp.exe:</p>
<pre><code><?xml version="1.0" encoding="utf-8" standalone="yes"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity type="win32" name="myapp.exe" version="1.2.3.4" />
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="dbgrid32.ocx" version="5.1.81.4" />
</dependentAssembly>
</dependency>
</assembly>
</code></pre>
<p>The dbgrid32.ocx is deployed to the same folder, along with it's own dbgrid32.ocx.manifest file:</p>
<pre><code><?xml version="1.0" encoding="utf-8" standalone="yes"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity type="win32" name="dbgrid32.ocx" version="5.1.81.4" />
<file name="dbgrid32.ocx">
<typelib
tlbid="{00028C01-0000-0000-0000-000000000046}"
version="1.0"
helpdir=""/>
<comClass progid="MSDBGrid.DBGrid"
clsid="{00028C00-0000-0000-0000-000000000046}"
description="DBGrid Control" />
</file>
</assembly>
</code></pre>
<p>This all works fine but maintaining these manifest files manually is a bit of a pain. Is there a way to generate these files automatically? Ideally I would just like to declare the application's dependency on a list of COM servers (both native and .NET) and then let the rest be generated automatically. Is it possible?</p>
http://stackoverflow.com/questions/16897/delphi-and-com-tlb-and-maintenance-issues4Delphi and COM: TLB and maintenance issuesGustavo2008-08-19T20:34:13Z2009-01-14T17:55:13Z
<p>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 very specific sort of application a I two questions:</p>
<ul>
<li><p>Experienced guys in Delphi and/or COM, do you have any workrounds to work with the buggy TLB interface ?
Some of the bugs are: IDE crashing during edition of a large TLB, lost of methods IDs, TLB corruption, etc.
Here, we haven't found any good solution. Actually we tried do upgrade do the new 2007 version. But the new IDE TLB interface has the same bugs that we found before.</p></li>
<li><p>How do you control TLBs versions ? The TLB file is in a binary format and conflict resolutions are very hard to do. We tried to do it exporting the interfaces descriptions to IDL and commiting into CVS, but we didn't found any good way to generate TLBs from IDL using Delphi. Additionaly, the MIDL tool provided by Microsoft, didn't parse correctly the IDL files that we exported from delphi.</p></li>
</ul>
<p>Thanks in advance,</p>
<p>Gustavo</p>
http://stackoverflow.com/questions/446379/delphi-2009-com-activex-type-library-support-stability7Delphi 2009 COM/ActiveX Type Library support stabilityulrichb2009-01-15T11:06:58Z2009-02-07T01:42:24Z
<p>Referring to <a href="http://stackoverflow.com/questions/16897/delphi-and-com-tlb-and-maintenance-issues">TLB and maintenance issues</a> ...</p>
<p>My question to people (often) using the <a href="http://chrisbensen.blogspot.com/2008/07/tiburn-sneak-peek-com_23.html" rel="nofollow">new COM/ActiveX type library support</a> in <strong>Delphi 2009</strong>:<br />
How stable is the implementation?</p>
<p>Especially, I'm interested in: adding/deleting classes, changing GUIDs, renaming methods/properties, reordering methods/properties, huge type libraries (50+ classes), ...</p>
<p>Is it as stable as in Delphi 2007 (a nightmare) or Delphi 7 (quite OK, but sometimes you have to restore the TLB file from SVN) or super-stable (as in, ... uhm, .... do you remember any Delphi version)?</p>
<p><strong>EDIT:</strong> Yes, of course, the text RIDL was an excellent idea, but my question is:<br />
Is the (new) <strong>implementation</strong> of the TLB support stable (especially synchronization of the RIDL file with the visual TLB editor and the implementation classes when doing the tasks I described above).</p>
http://stackoverflow.com/questions/656788/how-to-consume-and-re-expose-a-win32-type-library-using-delphi-prism0How to consume and re-expose a Win32 type library using Delphi Prismskamradt2009-03-18T02:39:34Z2009-03-18T12:47:23Z
<p>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 implemented?</p>
http://stackoverflow.com/questions/443226/type-libraries-in-delphi1Type Libraries in Delphi?Charles Faiga2009-01-14T14:50:47Z2009-01-14T17:29:56Z
<p>What is the best way to save a Delphi Type Library in SVN.</p>
<p>The file changes every time you compile the Application </p>
<p>The file is not saved in a readable form of AscII</p>
<p>It is very difficult to work out what changes have been made from one version to the next </p>
<p><strong>This is a major problem when more than one person is changing the file</strong></p>
<p><strong>QUESTIONS:</strong> </p>
<p>1) Should one save an exported ‘IDL’ file in the version control ? </p>
<p>2) Can one covert an ‘IDL ’ into a Delphi type library If so how ? </p>
<p>3) What are the best practices when working with a Delphi type library ? </p>
<p>4) How easy is it get rid of the type library in Delphi2009 datasnap project?</p>
<p>p.s. I am using BDS2006</p>
http://stackoverflow.com/questions/460486/using-net-classes-through-com-objects-in-delphi-sometimes-hangs2Using .Net classes through COM Objects in Delphi sometimes hangsThe Alchemist2009-01-20T08:41:56Z2009-02-23T07:56:48Z
<p>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. </p>
<p>Sometimes, after rebuilding the DLL, when I try to instantiate the objects exposed through COM the win32 application hangs at the CreateComObject call--how can I solve this problem?</p>
<p>To expose the Delphi.NET libraries through COM, I add the following attributes above each class deceleration: </p>
<p>[Comvisible(true)]
[Guid('some guid')]
[ClassInterface(ClassInterfaceType.AutoDual)] </p>
<p>After compiling the DLL, I generate a *TLB.pas file, this file contains definition for all public and COM visible classes and interfaces in DLL, this file allows me to more easily use the COM objects in my Delphi Win32 application. Finally, I register the dll and the .tlb flie using regasm.</p>
<p>I've tried unregistering and running the win32 app. which references the DLLS; I expected to receive a run-time error but the application once again hung at the CreateComObject call.</p>
<p>I've also tried unregistering and registering the dll without any luck.</p>
<p>Thanks.</p>
<p>p.s. I am using BDS2006</p>
http://stackoverflow.com/questions/442145/how-do-you-do-a-copy-and-paste-in-the-type-library-editor-in-delphi0How do you do a copy and paste in the Type Library Editor in Delphi ?Charles Faiga2009-01-14T06:55:57Z2009-01-14T14:44:40Z
<p>Help</p>
<p>I am busy making changes to a type library in a Datasnap project.</p>
<p>How do I copy and paste text with in the type library editor ?</p>
<p>P.s. I am using BDS2006</p>
<p>EDIT 1</p>
<p>Is there a way to chnage the Type Library without using the TLB Editor ?</p>
<p>EDIT 2</p>
<p>Is there any way to do a copy and paste in the 'Attributes' and 'Users' screens of type library editor ?</p>
http://stackoverflow.com/questions/127440/how-to-write-a-class-library-for-ole-automation0How to write a class library for OLE Automation?Martin2008-09-24T14:17:29Z2008-09-24T22:47:44Z
<p>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 suite.</p>
<p>I ported the add-in to Visual Studio as a class library project but Excel Automation doesn't recognize the classes in the compiled .dll file. Intuitively I think I would need a manifest, an interface or the something like that in my code.</p>
<p>What do I need to know in order to expose a class's methods and properties for use in OLE Automation?</p>