Tagged Questions
-1
votes
1answer
47 views
Failed to cast result of Marshal.GetActiveObject for COM interop wrapper
I'm struggling to work out how to access a COM interface provided by a C++ application and use it from a C# .NET application.
I try to access my COM object (which is provided by a running process) ...
0
votes
0answers
100 views
Changing .dll properties generated using tlbimp.exe tool
I generated a .tlb file from an .idl file generated using MIDL compiler. Now, using tlbimp.exe, I generated .dll from the generated .idl and I am able to do it properly.
However, I am facing ...
0
votes
1answer
263 views
define a structure in C++ IDL, then MarshalAs() appropriately in C#
I have a C++ COM server that fills a C# caller's structure with data.
The structure is defined in the C++ IDL, something like the following:
interface Icontrol : IDispatch{
[
uuid(...),
...
1
vote
1answer
111 views
Is there any way to fix the order of COM struct members when importing to C#?
I defined a struct in .idl file of C++ project, and the struct contained one VARIANT member.
[uuid(C42A456C-C139-4339-A023-F9458C8A7386)]
struct TEST_STRUCT
{
int Type;
...
2
votes
1answer
423 views
Problem creating COM-library only containing enum's
I'm am doing a COM-interop project. Substituting some VB and C++ ATL COM projects with C# and .NET Interop. When i define enumerations in .NET and they are made ComVisible, they get exposed as ...
1
vote
1answer
314 views
Exposing indexer like properties to COM
I have in existing COM-interface. I wan't to create a .net assembly that exposes a new interface as COM (with a new GUID), but the structure of the interface needs to be the same.
How can i create a ...
1
vote
3answers
871 views
Merging two .IDL files or two .tlb files into one file
I have 2 .net dll's which I expose to COM using REGASM. In order to simplify referencing within a COM client I would like to make these into one file.
I have tried converting both files to IDL and ...
0
votes
1answer
1k views
Issues Using Midl to create a .tlb from .idl “expecting a type specification”
I have been having a prolonged encounter with the beast known as COM Interop...
I am currently trying to generate a .tlb from a .idl file generated by the OLE/COM Object Viewer. However when trying ...
2
votes
2answers
522 views
Any sense in marking an IUnknown-derived interface as dual in IDL?
Reviewing our code I've found a curious definition in one of .idl files:
[
object,
uuid(uuidhere),
dual,
nonextensible,
oleautomation,
hidden
]
interface IOurInterface : ...
0
votes
1answer
952 views
How to create propput IDL method .NET interface for COM usage
I am having an issue using a .NET/ComVisible assembly in Excel/VBA. I defined several parameters as "object" in .NET so they will be translated to Variant in VBA since optional parameters in VBA need ...
0
votes
2answers
979 views
What's the purpose of noncreatable coclasses in IDL?
What is the reason for declaring noncreatable coclasses like the following in IDL?
[
uuid(uuidhere),
noncreatable
]
coclass CoClass {
[default] interface ICoClass;
};
I mean such class ...
