Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. C++ dll to Call in VB

C++ dll to Call in VB

Scheduled Pinned Locked Moved C / C++ / MFC
c++data-structures
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jannathali
    wrote on last edited by
    #1

    Hai, I have a C++ dll,in which one of its function returns a pointer to the string array. How i can receive it in VB. Thanks in Advance

    S K 2 Replies Last reply
    0
    • J jannathali

      Hai, I have a C++ dll,in which one of its function returns a pointer to the string array. How i can receive it in VB. Thanks in Advance

      S Offline
      S Offline
      sunlin7
      wrote on last edited by
      #2

      c++ code: __declspec(dllexport)BSTR WINAPI RetMsg(void) { wchar_t szMsg[] = L"Hello, world!"; BSTR pMsg = SysAllocStringLen(szMsg, wcslen(szMsg) + 1); return pMsg; } __declspec(dllexport)ULONG WINAPI FreeMsg(BSTR pMsg) { return SysFreeString(pMsg); } VB code: Private Declare Function RetMsg Lib "msg.dll" Alias "RetMsg" () As String

      1 Reply Last reply
      0
      • J jannathali

        Hai, I have a C++ dll,in which one of its function returns a pointer to the string array. How i can receive it in VB. Thanks in Advance

        K Offline
        K Offline
        KarstenK
        wrote on last edited by
        #3

        work with BSTR. Best is CComBSTR class, it help to ferget annoying stuff. :-O

        Press F1 for help or google it. Greetings from Germany

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups