-
.NET DLLs in VB6
Can this be done? Can I use a DLL (Class Library) made in NET in a VB6 application?
I built a sample and tried but it wouldn't reference the dll. Although I noticed there are different kinds of classes in NET and so I didn't know if I had to use a different kind (Component Class, Class Library...).
Finally starting to get the hang of this NET stuff and I'm loving it.
-
Yes, you can.
Take a look at regasm.exe.
(ms-help://MS.VSCC/MS.MSDNVS/cpguide/html/cpconexposingnetframeworkcomponentstocom.htm)
-
Thanks, that was a step in the right direction but I must still be missing something because I still couldn't reference it in a VB6 project.
-