Dll Question.

  • Thread starter Thread starter Jorge
  • Start date Start date
J

Jorge

Hi!

Is it possible to create a MFC standard dll using c++
that can be used in vb.net? Thanks.


Kind Regards
Jorge
 
* "Jorge said:
Is it possible to create a MFC standard dll using c++
that can be used in vb.net? Thanks.

You can:

(1) Export functions ('Declare' and 'DllImport' in VB.NET).
(2) Create a COM class library (Can be used by referencing the interop DLL).
(3) Create a MC++/C++ class library (Can be used by referencing the DLL).
 
Back
Top