CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2001
    Location
    England
    Posts
    20

    Question - Calling C++ DLLs from VB ?

    How can I call functions in C++ DLLs from VB ?
    I'm a total beginner with VB, examples would be appreciated.
    Thanks for your time,
    Dave.


  2. #2
    Join Date
    May 2001
    Location
    Russia
    Posts
    200

    Re: Question - Calling C++ DLLs from VB ?

    You can use any dll as any API decloration
    Declare Function MyFunction Lib "mydll.dll" (ByVal MyParam as Long) As Long


    Andy Tower

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured