The typelibrary tag has no wiki summary.
0
votes
0answers
18 views
How do I fill a selection using a defined pattern with photoshop type library?
I'm trying to fill an image with a pattern I've defined previously.
Photoshop.Document document = new Photoshop.Document();
document.Selection.Fill(What goes here?);
I've been searching the net all ...
0
votes
2answers
320 views
How to create a wrapper DLL/Type Library in VB6?
In my previous question, I asked why I kept getting the error message bad DLL calling convention when trying to call functions from a DLL. The general consensus was that I needed to change the calling ...
0
votes
0answers
127 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
3answers
256 views
Maximun number limitation of COM+ function parameters
I was using Delphi Type Library to create a COM+ application. I got a access violation error when I created the number 78 parameters for one function call. I realized that there is a limitation for ...
2
votes
1answer
202 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 ...
0
votes
1answer
109 views
How portable is relying on scrrun.dll being available?
I have the following directive in my sources:
#import <scrrun.dll>
Can I rely on this DLL being pre-installed with Windows?
How relying on this limits Windows versions, which can be used?
2
votes
2answers
740 views
IDL to Type Library
Is there a way in Delphi 7 to generate a tlb from an idl? Or even from a class/ interface definition?
4
votes
3answers
5k views
How to generate type library from unmanaged COM dll
I have to use third party, unmanaged COM dll into my .NET application. I need to modify this assembly to produce a custom RCW. In order to Edit Interop Assembly I need the type library of the ...
8
votes
2answers
306 views
Non-alphanumeric characters in COM/.NET interface names
I'm thinking of using the characters #@! in some COM interfaces our system generates. The COM type library is also exported to .NET. Will those characters cause me trouble later on?
I've tested it ...
4
votes
1answer
467 views
Is it possible to have Delphi auto-generate event-support code for an imported OLE/COM type library?
I'm trying to generate _TLB import units for Outlook 2003, 2007 and 2010 (and also other OLE servers) analogous to the ones bundled with Delphi for Outlook 2000 and 2002. However, I couldn't get the ...
1
vote
1answer
55 views
how to know about the type of com server using type library?
Is there any attribute, property, or method available which tells whether a given type library is an in-proc COM server or an out-of-proc COM server?
0
votes
1answer
54 views
Getting Types in Win32 Dll
I want to get the types and details in a plain Win32.dll just like we can in a COM. In COM, everything embed inside idl results in TLB, MSFT exposes APIS in which we can extract types.
I need the ...
1
vote
1answer
312 views
Why exception occured at LoadTypeLibEx System.ArgumentException: Value does not fall within the expected range?
I am loading type library in C++/CLI. In C# its loading successfully but it's giving again and again following exception in managed C++/CLI.
exception occured at LoadTypeLibEx ...
0
votes
1answer
475 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 ...
1
vote
4answers
574 views
Why does MSHTML_TLB.pas produce warnings?
I am trying to get rid of lots of warnings in a project after converting it from BDS 2006 to Delphi 2009.
The project needs a type library named MSHTML_TLB. The source file mshtml_tlb.pas is an ...
2
votes
2answers
647 views
Why is the type library in my dll corrupt (registering returns TYPE_E_CANTLOADLIBRARY)?
We have a mature c++ COM codebase that has been building, registering and running for many years. This includes numerous developer machines and autobuild machines.
The codebase builds several dlls ...