HOWTO: Callback Visual Basic Functions From a C DLL

Last reviewed: February 25, 1998
Article ID: Q181578
The information in this article applies to:
  • Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, version 5.0

SUMMARY

With the new AddressOf operator in Microsoft Visual Basic 5.0, you can pass a DLL the pointer to a Microsoft Visual Basic function and have the DLL call that function through the pointer. This article gives you some sample code to get started and also demonstrates how to pass strings from your DLL to Microsoft Visual Basic.

MORE INFORMATION

To use this article, follow the steps below to create a Microsoft Visual Basic 5.0 .exe project and a Microsoft Visual C++ 5.0 .dll project. Then run your Microsoft Visual Basic program to test it.

Steps to Create the Microsoft Visual Basic 5.0 Project

  1. Create a new Standard EXE project in Microsoft Visual Basic 5.0.

  2. Add a Command button to Form1.

  3. Add the following declare statement to the General Declarations section of Form1:

          Private Declare Sub ExecuteCallback Lib "vcvbdll" ( _
    
             ByVal pFunc as Long)
    
    

  4. Add the following code to the Click event of the Command button:

          Call ExecuteCallback(AddressOf MyCallback)
    

  5. Add a new module to the project, and add the following code to the module.

          Sub MyCallback(ByVal parm as String)
             MsgBox "You are inside the VB callback function!"
             MsgBox "Parameter passed in was: " & parm
          End Sub
    
    

Steps to Create the Microsoft Visual C++ 5.0 Project

  1. Create a new Microsoft Visual C++ 5.0 MFC AppWizard (dll) project named "vcvbdll" and accept all of the default options.

  2. Add the following code to the end of the vcvbdll.cpp file:

    Sample Code -----------

          void __stdcall ExecuteCallback(long cbAddress) {
    
             // Declare the function pointer, with one string argument.
             typedef void (__stdcall *FUNCPTR)(BSTR pbstr);
             FUNCPTR vbFunc;
    
             // Point the function pointer at the passed-in address.
             vbFunc = (FUNCPTR)cbAddress;
    
             // Call the function through the function pointer.
             vbFunc(SysAllocString(L"Hi! This message came from your DLL!"));
          }
    
    

  3. Add the following line to the end of the vcvbdll.def file to export the ExecuteCallback function:

          ExecuteCallback
    

  4. Compile the project, and copy the .dll to the \Windows\System directory to test it.

REFERENCES

Microsoft Visual Basic 5.0 Books Online: AddressOf

For additional information about using the AddressOf operator for callbacks, see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q171729
   TITLE     : HOWTO: Do Generic Callbacks Using a Helper DLL

(c) Microsoft Corporation 1998, All Rights Reserved. Contributions by Joe Crump, Microsoft Corporation

Keywords          : VBKBDLL kbcode
Version           : win95:5.0;winnt:5.0
Platform          : Win95 winnt
Issue type        : kbhowto


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 25, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.