c++ libraries

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Henk

    c++ libraries

    Hi,

    Is it possible to use c++ libraries in my VB.NET application?

  • Anand Balasubramanian

    #2
    RE: c++ libraries

    Hi ,
    You can use C++ libraries by exporting the functions in VB.nte using the
    Declare statements or the DllImport statement. But one important thing is
    you had have to declare the functions in the C++ dll with the __stdcall.

    Link of DLLImport

    frlrfSystemRunt imeInteropServi cesDllImportAtt ributeClassTopi c.asp




    Anand Balasubramanian
    Microsoft, Visual Basic .NET

    This posting is provided "AS IS" with no warranties, and confers no rights.
    Please reply to newsgroups only. Thanks

    Comment

    • Anand Balasubramanian

      #3
      RE: c++ libraries

      Hi ,
      You can use C++ libraries by exporting the functions in VB.nte using the
      Declare statements or the DllImport statement. But one important thing is
      you had have to declare the functions in the C++ dll with the __stdcall.

      Link of DLLImport

      frlrfSystemRunt imeInteropServi cesDllImportAtt ributeClassTopi c.asp




      Anand Balasubramanian
      Microsoft, Visual Basic .NET

      This posting is provided "AS IS" with no warranties, and confers no rights.
      Please reply to newsgroups only. Thanks

      Comment

      Working...