Tagged Questions
4
votes
1answer
205 views
Implementing property must have matching 'ReadOnly' or 'WriteOnly' specifiers
I have an interface defined in an idl file and trying to convert a vb6 project to vb.net.
The conversion created the interop from the tlb of this idl and in vs2010 it complains about the property not ...
1
vote
3answers
457 views
Unregister type library on Vista
I've made a mistake in IDL file by increasing library version. After that I revert the version. Since the time I can't work with library, because VB6 still write : "There is new version of library * ...
2
votes
3answers
932 views
VB6 - How to pass Strings to a DLL written in C through a .tlb File
I'm working on a graphical interface written in VB6, where I have to call function contained in a certain DLL written in C. Because of a known limitation I had to implement a trick that allows me to ...
3
votes
0answers
1k views
Creating an IDL file from a DLL [closed]
I'm working on a VB6 graphical interface that make use of a DLL generated from a C code that makes use of __declspec(thread) variables. The problem is that because of a known limitation, it is not ...
6
votes
1answer
300 views
Why do IDL defaultvalue values look rounded?
I have a COM object with a function with an optional last argument. The IDL is a bit like this:
interface ICWhatever: IDispatch
{
[id(96)] HRESULT SomeFunction([in,defaultvalue(50.6)]float ...
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 ...
2
votes
2answers
354 views
Creating IDL for MAPI-MIME conversion
I'm trying to create the IDL for the IConverterSession interface and I'm confused by the definition of the MIMETOMAPI method. It specifies the LPMESSAGE pmsg parameter as [out] yet the comments state ...