tags:

views:

40

answers:

2

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

A: 

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.

drventure