how to use vb.net class library in mfc application
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
how can i call a function from a vb.net class library within a mfc application? mission -- modified at 7:24 Monday 3rd April, 2006
-
how can i call a function from a vb.net class library within a mfc application? mission -- modified at 7:24 Monday 3rd April, 2006
Use the
regasm
.net framework tool to register the assembly into registry and then u can use it as a com component. more details is there at http://www.codeproject.com/useritems/COM_Interoperability.asp[^] To ues the tlb file form ur mfc app eihter u can use the#import
method or else an alternative is to use theCOleDispatchDriver
wrapper method. cheers...mil10.