I have a .NET library visible in COM, and it's called from a vb6 application.

If I add some methods and release a new version (but don't erase or change signatures of existing methods), I would like being able to just install it in the production machine, and have it working. However, it seems that such approach doesn't work; I need to reompile the vb6 application.

Is there any way to achieve this?

link|improve this question

What you're asking for is a lot easier than binary compatibility. You're late-binding with IDispatch. – Steven Sudit Sep 9 '10 at 8:44
Damn, you're right, late-binding. I guess the question is clear enough, anyway. – Jaime Pardos Sep 9 '10 at 8:49
feedback

1 Answer

up vote 6 down vote accepted

You can explicitly use the Guid attribute on your COM interfaces and classes and the DispId attribute on your methods, fields and properties:

[Guid("0E213759-1679-4CD1-8322-566CF76928EF")]
public class SampleClass
{
    [DispId(8)]
    public void MyMethod() {}
}
link|improve this answer
Is this all I need? I have the Guid but not the DisId's. Will try this ASAP, thank you! – Jaime Pardos Sep 9 '10 at 8:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.