c++ DLL's in VB.net

  • Thread starter Thread starter Michael Turner
  • Start date Start date
M

Michael Turner

Hi Guys

I have just found a c++ dll that should allow me to communicate with my
phone system, can I use this in VB.net if so how, I have all the
documentation for it in c++ but unfortunatly I dont know that language.
 
Michael,

Michael Turner said:
I have just found a c++ dll that should allow me to communicate with my
phone system, can I use this in VB.net if so how, I have all the
documentation for it in c++ but unfortunatly I dont know that language.

Take a look at the documentation for 'Declare' and 'DllImportAttribute' +
platform invoke. If the DLL exports functions, you can consume them using
according declares.
 
Back
Top