user472874
user472874

Reputation: 41

How to Call A .NET Created DLL in VB6 Application?

I need to call a VB.NET DLL in VB6 application, does anybody have any ideas?

Upvotes: 4

Views: 18792

Answers (2)

DarinH
DarinH

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

Related Questions