Click here to Skip to main content
Licence 
First Posted 5 Sep 2000
Views 370,823
Bookmarked 42 times

Calling a VB ActiveX DLL from a MFC Client

By | 13 Sep 2000 | Article
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

    About the Author

    Amit Dey

    Web Developer

    India India

    Member

    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
     


    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    QuestionCan we run the above vc++ application by replacing the existing dll with Updated dll (add a new public function) without builing the vc++ application Pinmemberrameshbabu_peddapalli19:15 15 Oct '08  
    QuestionHow to create Dll in VB dotnet. Pinmemberashokrana0077:30 18 Sep '08  
    QuestionWhat about the events ? PinmemberDevMan773:43 30 Jul '08  
    QuestionHow to pass CString Array in VC to a VB programmed DLL? Pinmemberurwangshd9:27 23 Nov '07  
    QuestionAnybody knows, How to dynamically include the dll PinmemberJothiMurugeswaran19:40 15 Nov '07  
    QuestionDoubt in loading a dll in VC++ Project Pinmemberganesa moorthy6:52 3 Jul '07  
    AnswerRe: Doubt in loading a dll in VC++ Project PinmemberJothiMurugeswaran0:37 20 Nov '07  
    GeneralString And ByRef Parameters PinmemberMazdisna meenavee mehr8:41 19 Jun '07  
    GeneralCalling a COM DLL from MFC Client PinmemberSabareeswaran23:28 28 Dec '06  
    Generaldiff bw ax & com dll PinmemberGANsJob2:15 26 Dec '06  
    QuestionCreation Failed Pinmemberxtiancorrea21:18 3 Sep '05  
    AnswerRe: Creation Failed PinmemberRivF8:49 22 Dec '05  
    You have to register the dll.
    The #import statement has to reference the same dll that is referenced in the system registry.
    AnswerRe: Creation Failed PinmemberElmue4:21 8 Aug '07  
    QuestionRe: Creation Failed Pinmember11166618:20 28 Aug '07  
    AnswerRe: Creation Failed Pinmemberpotesanj6:12 3 Oct '07  
    GeneralRe: Creation Failed Pinmember11166619:26 28 Aug '07  
    Generalproblem with dll create in C# PinmemberMihaiChioariu6:19 10 Aug '05  
    GeneralNumber of arguments error PinmemberShenthil1:43 26 Jul '05  
    Generalcalling vc++ dll from vb dll PinsussAnonymous18:26 26 Apr '05  
    GeneralCreate an ActiveX object in VC++ PinmemberAnonymous7:34 13 Apr '05  
    GeneralTrying to open workspace .dsw gives the error " "This makefile was not generated by developer studio" PinsussMohamed Jaffar Sagir22:14 16 Mar '05  
    GeneralRe: Trying to open workspace .dsw gives the error " "This makefile was not generated by developer studio" PinmemberMohamed Jaffar Sagir22:49 16 Mar '05  
    GeneralTo send a string from VC++ dll to VB app using SendMessage PinmemberMohamed Jaffar Sagir18:05 30 Jan '05  
    GeneralRe: To send a string from VC++ dll to VB app using SendMessage Pinmemberprosantalangtha14:47 15 Nov '05  
    Generalplease help me Pinmembergroom hellscream3:06 26 Sep '04  

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

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

    Permalink | Advertise | Privacy | Mobile
    Web01 | 2.5.120528.1 | Last Updated 14 Sep 2000
    Article Copyright 2000 by Amit Dey
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid