I have a DLL written in VB 6 and another DLL written in Visual Studio 2005 (VB.NET).

Now I want to invoke the method of the VB DLL from my .NET DLL. What should I do for this? Any thoughts?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 10 down vote accepted

As VB6 creates COM DLLs, Visual Studio should have no problems generating an interop stub for you. Simply add a reference to the VB6 DLL from your .NET project by selecting Add Reference in Visual Studio and finding your DLL under the COM tab. Make sure the VB6 DLL is registered on your machine before you do this.

link|improve this answer
feedback

This sample chapter book help you Using Visual Basic 6 with Visual Basic .NET: COM Interop

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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