Click here to Skip to main content
15,881,803 members
Articles / Desktop Programming / MFC
Article

Calling a VB ActiveX DLL from a MFC Client

Rate me:
Please Sign up or sign in to vote.
4.63/5 (27 votes)
13 Sep 2000 529K   2.6K   44   161
A simple way to call a VB ActiveX DLL from a VC/MFC Client
  • Download source files - 30 Kb
  • Introduction

    In this article I'll present a way of calling a VB ActiveX DLL from a MFC client application. There are other ways to do so but I find this by far the easiest. Any information presented here is only for learning purposes.

    I shall briefly point out the steps you need to follow-

    • Create an ActiveX server component with VB. This is the ActiveX DLL you need to create with VB.
    • Create an dialog based MFC application using the MFC Appwizard.
    • Import the server's (DLL) type library into the MFC client app.
    • Initialize the COM library
    • Retrieve the CLSID of the server component.
    • Create an instance of the COM server component.
    • Use the COM object
    • Uninitialize the COM library

    First create a new ActiveX DLL project using VB 6.0. Name the project prjdll and the class clsdll. Add a new function fnCallDll to the class. My function just displays a messagebox and looks like

    Public Function fnCallDll()
    	MsgBox "VB ActiveX DLL"
    End Function

    Save and compile this project to create prjdll.dll. This is our server component.

    Now we are going to develop the client. Create a new dialog based application in VC++ using MFC Appwizard and save the project.

    We are going to import the server component's type library using the #import statement. Copy the prjdll.dll file to the directory where you have saved your MFC Appwizard project. Click the FileView tab of the Project Workspace window, expand the Header Files folder, open the file stdafx.h and add the following code (appears greyed)

    # import "prjdll.dll"
    using namespace prjdll; 

    You must add the above code after

    //{{AFX_INSERT_LOCATION}}
    // Microsoft Visual C++ will insert additional declarations immediately  

    and before

    #endif 

    in the stdafx.h file.Importing the prjdll.dll file helps the compiler to link to the dll's type library at runtime. The #import tells the compiler to generate the wrapper class, which will encapsulate the functionalities of the server component. If the server component is created using VB we need the import the associated .dll file and if the component is created using VC++, we need to import the .tlb file.The name of the wrapper class will be same as the server component name, by default.

    Compile the stdafx.cpp file. The compiler generates a .tlh and a .tli file in your projects Debug or Release directory (depending on your configuration). These are the type library header and implementation files. Open the .tlh file by double-clicking it and find out word immediately after the word namespace. This is usually the name of the project that we earlier created using VB.Look at the code we inserted earlier to the stdafx.h file.The using namespace is required so that we can access the server's methods.

    Place a codebutton control (IDC_BUTTON1) on the dialog. Double-click the control to add a command handler OnButton1() for the button. Now add the following code in the handler-

    HRESULT hresult;
    CLSID clsid;
    
    CoInitialize(NULL);	//initialize COM library
    hresult=CLSIDFromProgID(OLESTR("prjdll.clsdll"), &clsid);    //retrieve CLSID of component
    		
    _clsdll *t; 
    hresult=CoCreateInstance(clsid,NULL,CLSCTX_INPROC_SERVER,__uuidof(_clsdll),(LPVOID *) &t);
    if(FAILED(hresult))
    {
    	AfxMessageBox("Creation Failed");
    	return;
    }
    
    t->fnCallDll ();  //call method
    t->Release();   //call method
    CoUninitialize();  //Unintialize the COM library         

    The name of the CoClass is _clsdll. The CoCreateInstance function returns the address of the interface pointer requested. Now the pointer t can happily be used to access the functionality of the server component.

    That's it. On clicking the button a Messagebox should pop up.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here


    Written By
    Web Developer
    India India
    Amit Dey is a freelance programmer from Bangalore,India. Chiefly programming VC++/MFC, ATL/COM and PocketPC and Palm platforms. Apart from programming and CP, he is a self-taught guitar and keyboard player.

    He can be contacted at visualcdev@hotmail.com


    Comments and Discussions

     
    GeneralCollectionPtr - Pin
    pas_ascom18-Sep-03 5:14
    pas_ascom18-Sep-03 5:14 
    GeneralRe: CollectionPtr - Pin
    Anonymous23-Oct-03 13:53
    Anonymous23-Oct-03 13:53 
    GeneralRe: CollectionPtr - Pin
    pas_ascom24-Oct-03 5:44
    pas_ascom24-Oct-03 5:44 
    GeneralRe: CollectionPtr - Pin
    pas_ascom24-Oct-03 5:47
    pas_ascom24-Oct-03 5:47 
    GeneralLoading a form instead of a msgbox and using the controlls e.g. listbox etc. Pin
    arvindIT200311-Sep-03 12:19
    arvindIT200311-Sep-03 12:19 
    GeneralRe: Loading a form instead of a msgbox and using the controlls e.g. listbox etc. Pin
    Amit Dey12-Sep-03 21:59
    Amit Dey12-Sep-03 21:59 
    GeneralPassing a value to VB DLL function Pin
    asierra2-Sep-03 14:25
    asierra2-Sep-03 14:25 
    GeneralRe: Passing a value to VB DLL function Pin
    asierra3-Sep-03 5:48
    asierra3-Sep-03 5:48 
    Nevermind, I was not passing the pointer as expected, and somehow my VB DLL is handling the pointer and performing the actions in my VB DLL function with the pointer I passed.

    signed short* pTest;
    signed short sSelect = m_List_Cat.GetCurSel();
    pTest = &sSelect;

    ...
    // And when calling the function

    t->fnCallDll(pTest); //call method and pass pointer.

    Now it works great !!
    GeneralCalling a VB ActiveX DLL from ASP page Pin
    Azghar Ahmed Baig22-Aug-03 20:37
    Azghar Ahmed Baig22-Aug-03 20:37 
    GeneralProblems with the source code Pin
    Faisal_tuhh24-Jul-03 0:56
    Faisal_tuhh24-Jul-03 0:56 
    GeneralRe: Problems with the source code Pin
    mbridge23-Sep-03 12:34
    mbridge23-Sep-03 12:34 
    GeneralRe: Problems with the source code Pin
    Member 6813282-Dec-03 8:21
    Member 6813282-Dec-03 8:21 
    GeneralRe: Problems with the source code Pin
    liweiye8-Dec-03 14:41
    liweiye8-Dec-03 14:41 
    GeneralDoing this in .NET Pin
    Anonymous15-May-03 12:52
    Anonymous15-May-03 12:52 
    GeneralRe: Doing this in .NET Pin
    Gernot Frisch25-Aug-03 4:35
    Gernot Frisch25-Aug-03 4:35 
    GeneralCommunicating with VB-created ActiveX-DLL Pin
    P.O. Arnäs2-Apr-03 4:45
    sussP.O. Arnäs2-Apr-03 4:45 
    GeneralRe: Communicating with VB-created ActiveX-DLL Pin
    Anonymous10-Apr-03 9:54
    Anonymous10-Apr-03 9:54 
    GeneralPassing parameter ByRef Pin
    Sco++14-Feb-03 12:59
    Sco++14-Feb-03 12:59 
    GeneralRe: Passing parameter ByRef Pin
    naturailec24-Mar-04 19:50
    naturailec24-Mar-04 19:50 
    GeneralRe: Passing parameter ByRef Pin
    Srikar Babu Sriram9-Jun-04 0:06
    Srikar Babu Sriram9-Jun-04 0:06 
    Generalusing lib file in my dll Pin
    vishalnikisharma10-Feb-03 0:21
    vishalnikisharma10-Feb-03 0:21 
    GeneralCalling a VB ActiveX EXE Pin
    AlonOren23-Jan-03 1:33
    AlonOren23-Jan-03 1:33 
    GeneralRe: Calling a VB ActiveX EXE Pin
    Anonymous23-Jan-03 7:33
    Anonymous23-Jan-03 7:33 
    GeneralLoading a form instead of a msgbox Pin
    Gary Kirkham9-Jan-03 5:57
    Gary Kirkham9-Jan-03 5:57 
    GeneralRe: Loading a form instead of a msgbox Pin
    Amit Dey11-Jan-03 6:54
    Amit Dey11-Jan-03 6:54 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.