0
votes
1answer
24 views
If I registered a TLB do I still need to register the ocx in order to compile?
I am trying to compile a vb6 application and I can't register the ocx files. In order to attempt to compile I have replaced the Object= lines in the .vbp file with Reference= lines …
0
votes
2answers
10 views
In VB6 is linking to a tlb generated from an ocx the same as linking to an ocx directly
The reason I am asking is I have an ocx that I don't want to register on the build machine but I would still like to build against it. If the tlb route is not the right direction …
1
vote
1answer
335 views
Where is the Wrapper Assembly Key File setting in VS 2008?
I'm trying to build an application that is strongly named. It is referencing a COM interop library that I add via the Add References dialog. It's been a while, but I seem to reca …
1
vote
1answer
86 views
Register type library x64 regtlib)
Hi,
I'm running Windows 7 x64, and need to register a type library file (.tlb). I've done this previosuly (on a vista x64 machine) but neglected to take notes as to how I acheive …
4
votes
1answer
47 views
Is it possible that C# has problems calling VB6 methods that have optional parameters?
I added 3 optional boolean parameters to a method found within a VB6 DLL. The class that houses it is MultiUse (public), and the method itself is Private. The class implements a sp …
0
votes
2answers
114 views
How to register a type library in VBA
I am trying to register a type library programatically from VBA code, using two variants of a technique found using Google (Subs RegisterTypeLibrary and RegisterTypeLibrary2 below) …
1
vote
1answer
42 views
COM types question
I have this vendor-supplied TLB file, which I've used to generate a Ruby proxy class. However, the TLB in question describes 6 interfaces and 3 classes:
AcdAutomationServer (I) …
0
votes
1answer
13 views
IDL contains coclass VirtualMachine, MIDL puts virtualMachine in the TLB. WTF?
I've got a snippet of IDL that looks like this:
[ object, uuid(...), pointer_default(unique) ]
interface IVirtualMachine { /* ... */ }
[ object, uuid(...), pointer_default(unique …
1
vote
2answers
92 views
Anyone heard of Accessibility_TLB
I have been working on converting a assembly of mine to be usable through Delphi. I was able to convert the assembly to a PAS file and call the method in my delphi application. B …
0
votes
1answer
296 views
how to import a tlb file programatically in c++??
Currently I am using the statement:
#import "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\test.tlb" named_guids
But I am getting the folder path programatically. i.e., "C:\WIN …
1
vote
2answers
108 views
New Version of Third Party COM DLL - How to Install and Keep Old Versions in Delphi?
I need to have my Delphi program use a new version of a third party DLL. I'd like to be able to use the new version but revert to the old version if I need to.
Some of the object …
1
vote
2answers
207 views
compilation error while #import tlb file in COM automation
Hi,
I am trying to #include an application tlb file in VC++ project.
Getting following compilation errors, after #import "CANoe.tlb" in my project source file. -
unknown chara …
0
votes
3answers
474 views
COM automation using tlb file
Hi,
Consider me a novice to windows environment and COM programming.
I have to automate an application (CANoe) access. CANoe exposes itself as a COM server and provides CANoe.h , …
0
votes
2answers
146 views
Why is this C# Class Library project unable to create a COM compatible DLL?
I've downloaded a C# Class Library called TreeViewAdv, that I need to use in another project as a COM DLL.
It builds successfully (Release, not Debug).
Registering the built DLL …
1
vote
2answers
125 views
.tlh generated on 2 machines is different
I have a .NET dll which has some interfaces\classes which are exposed to com. during the build procedure a .tlb file is generated and this tlb is referenced by some c++ code. As …
