Reputation: 41
I need to call a VB.NET DLL in VB6 application, does anybody have any ideas?
Upvotes: 4
Views: 18792
Reputation: 300759
How to call a Visual Basic .NET or Visual Basic 2005 assembly from Visual Basic 6.0
Upvotes: 10
Reputation: 4889
You can also export functions as standard windows DLL function entry points if you're willing to use a post compile tool
Check out
http://www.codeproject.com/KB/dotnet/DllExport.aspx
Works a treat and lets you integrate with all sorts of apps using Native VB.net when it'd require C or asm otherwise.
Upvotes: 0