Tagged Questions
0
votes
0answers
96 views
using .net interface in idl property
I have an interface defined as such in C#...
[Guid("CCECB9F6-FCE6-4AC6-8163-39BC22314EE5")], ComVisible(true)]
public interface ITestInterface
{
string TestProp { get; set; }
}
...
3
votes
1answer
208 views
Convert TLB to IDL
Does anyone know of a commandline-tool that generates an idl file from a type library (.tlb)? The reason for doing this is to get rid of underscores in enum-values generated from regasm. The problem ...
1
vote
1answer
128 views
Trouble Casting COM Object to a C#/.NET Class
I have a base class that is written in C# that implements an interface defined in an IDL library. I have a C++ class that manages the single instance of this class. I also have a C# project that needs ...
0
votes
0answers
294 views
MIDL “undefined symbol” error when using importlib
I am using MIDL to generate type libraries from IDLs. Furthermore, TLBs are imported to .NET assemblies and used through C#.
I thought that it would be a good habit to break down the type libraries ...
2
votes
0answers
470 views
Help needed with “The type library importer could not convert the signature for the member” warning in a trivial setup
Observe this most trivial IDL file:
import "unknwn.idl";
typedef struct _MyStruct
{
DWORD len;
[size_is(len)] BYTE *buffer;
} MyStruct;
[
object,
...
2
votes
1answer
421 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 ...
3
votes
3answers
2k views
How to get IDL from a .NET assembly (or how to to convert TLB to IDL) in a command line?
We have a .NET assembly (Aspose.Words actually) and we want clients to use it from COM clients without much hassle.
So we ship a .TLB with the assembly so the client can use it from languages such ...
3
votes
3answers
1k views
C# - writing a COM server - Properties mapped to methods
We are trying to replace a COM server originally written for a VB6 application
We have no access to source code.
For some reason, the VB6 app can call our constructor, but then it gets:
System ...
0
votes
1answer
948 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 ...
