Click here to Skip to main content
Licence CPOL
First Posted 12 Nov 2002
Views 131,998
Bookmarked 34 times

MSFlexGrid Control on an ATL Composite Control

By | 27 Mar 2003 | Article
How To Use MSFlexGrid Control on an ATL Composite Control

Introduction

It is bit tricky to use MSFlexGrid Control in ATL projects (I struggled lot with MSDN and net) because:

  1. MSFlexGrid Control is a Visual Basic control
  2. MSFlexGrid Control requires runtime control license.

To check the problem you can do the following:

  1. Create ATL Server Dll
  2. Add ATL Composite Control
  3. Right Click and insert MSFlexGrid Control
  4. Add Event by right clicking and expose some events.
  5. Build Dll.
  6. Deploy in a test machine along with MSFlex.ocx and other support libraries. Please Note that it will work fine on the development machine (Machine which has visual studio installed) because when you install visual studio it provides design time and runtime license for the current system by default.

See Details on:

Result

It won’t work on test machine (The machine which only has OS installed). If you are Using Visual Basic as client it will display page not found kind of HTML page in place of control.

How To use MSFlexGrid Then?

  1. Create ATL Server Dll.
  2. Add ATL Composite Control.
  3. Import msflxgrd.ocx in control header file.
    #import "C:\WINNT\System32\msflxgrd.ocx" raw_interfaces_only, 
        raw_native_types, no_namespace, named_guids
  4. Add #pragma warning(disable:4146) before #import "...msflxgrid.ocx..." otherwise it will give warning.
  5. Now the problem is: at the time of creating control you need to get the runtime license for MSFlexGrid Control. I had made a function to do so:
     // Create Control
     void CreateObject()
     {
       CComPtr<IUNKNOWN> pUnkCont;
       ComQIPtr <IPERSISTSTREAMINIT> spPerStm;
       CComPtr<ICLASSFACTORY2> pCF;
       // Add CLSID of MSFlexGrid for Runtime license
       CComBSTR bstrLicKey = "72E67120-5959-11cf-91F6-C2863C385E30";
       HRESULT hr = CoGetClassObject(CLSID_MSFlexGrid,
        CLSCTX_ALL,
        NULL,
            IID_IClassFactory2,
        reinterpret_cast<void**>(&pCF) );
    
       // Call CreateInstanceLic to create instance of control 
       // with runtime license
       if( !FAILED( hr ) )
        hr =pCF->CreateInstanceLic(NULL,NULL,IID_IUnknown,bstrLicKey,
          reinterpret_cast<void**>(&pUnk));
       
       spPerStm=pUnk;
       spPerStm->InitNew();
    
       wnd.Attach(m_hWnd);
       wnd.AttachControl(pUnk, &pUnkCont);
       m_VarGrid = pUnk;
      // Start event connection
      DispEventAdvise(pUnk); 
     }
    
  6. Add the following member variables. I’ve added it the following member variables as public.
        CAxWindow wnd;
        IUnknownPtr pUnk;
        IMSFlexGridPtr m_Grid;
            
  7. Next step is to catch the events of flxgrid control which can be done by adding the following line in class declaration:
    public IDispEventImpl < ID_VAR_GRID,CAuthorVar,&DIID_DMSFlexGridEvents,
        &LIBID_MSFlexGridLib,1,0 >
  8. Add Sink Entry (I’m feeling lazy and just using click event if you want you can use no of events as per ur requirement)
    BEGIN_SINK_MAP(CFlxCtrl)
        //Make sure the Event Handlers have __stdcall calling convention
        SINK_ENTRY_EX(ID_GRID,DIID_DMSFlexGridEvents, DISPID_CLICK, 
          OnClick_grid)
    END_SINK_MAP()   
    
  9. In Resource.h file add #define ID_GRID 201 or any ID which you like.
  10. Add Event Handler:
    VOID __stdcall Click_grid()
    {
        AfxMessageBox("Clicked");
    }
    
  11. You can also add a method to initialize gird i.e..
        void InitGrid()
        {
            CString Cols[5]={"Name","Phone No","MailID"};
            m_VarGrid->put_FixedRows(1);
            m_VarGrid->put_FixedCols(0);
            m_VarGrid->put_Rows(2);
            m_VarGrid->put_Cols(3);
    
            for(int i = 0;i!=3;i++)
            {
                m_VarGrid->put_TextMatrix(0,i,(_bstr_t)Cols[i]);    
                m_VarGrid->put_ColWidth(i,1260);
            }
        } 
    
  12. In the OnInitDialog call CreateObject() function and InitGrid().
  13. Add a method to interface ie.
    STDMETHODIMP CAuthorVar::Stop()
    {
    AFX_MANAGE_STATE(AfxGetStaticModuleState())
    
        if(pUnk)
        {
            HRESULT hr= DispEventUnadvise(pUnk);//
        }
        m_Grid.Release();
        return S_OK;
    }
    
  14. Test the control in ActiveX Control Test Container and don't forget to call stop method before closing.

I also had noticed another problem which is:

Every time you need to call DispEventUnadvise(pUnk)/DispEventAdvise(pUnk) method and it won't process any messages from container window or other controls placed there. The easiest solution I found is just wrap up your first control into another Composite Control and it will make your life easy.

If you are still feeling lazy or has already created control and don’t want to rewrite then you can cheat the test machine by adding the following in registry:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Licenses\72E67120-5959-11cf-91F6-C2863C385E30]
@="ibcbbbebqbdbciebmcobmbhifcmciibblgmf"

and be happy but I won’t recommend it. So, Have a fun with MSFlexGrid and ATL Composite Control.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Uttam Kumar Unik!

Software Developer (Senior)
Barclays Wealth
United Kingdom United Kingdom

Member



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
Generalcomposite Activex PinmemberNikkiee10:43 3 Dec '08  
GeneralRe: composite Activex PinmemberUttam Kumar Unik!22:51 3 Dec '08  
GeneralRe: composite Activex PinmemberNikkiee1:56 4 Dec '08  
GeneralRe: composite Activex PinmemberNikkiee2:02 4 Dec '08  
GeneralRe: composite Activex PinmemberUttam Kumar Unik!2:08 4 Dec '08  
GeneralRe: composite Activex PinmemberNikkiee2:41 4 Dec '08  
GeneralRe: composite Activex PinmemberUttam Kumar Unik!2:04 4 Dec '08  
GeneralRe: composite Activex [modified] PinmemberNikkiee2:25 4 Dec '08  
GeneralCrashes in release mode PinmemberMember 172712520:03 18 Feb '08  
QuestionHow to handle ctrl/shift keys Pinmemberkirrik17:27 5 Mar '07  
GeneralMS WEb Browser Control on a composite control. PinmemberShashikant_200623:31 11 May '06  
GeneralCreate ActiveX Control using ATL Pinmemberrajesh_kapure0:26 15 Nov '05  
GeneralRe: Create ActiveX Control using ATL PinmemberUttam Kumar Unik!0:54 15 Nov '05  
GeneralFlexGrid ATL Composite Control and Windows Server 2003 Pinmemberdoris792:33 1 Jun '05  
GeneralEventIDs for MSFlexGrid control PinsussVKatti4:44 11 Feb '05  
General[Message Removed] Pinmemberstonber1:36 4 Oct '08  
GeneralCreating a dialog in ATL composite control PinmemberSundeep Gawande3:46 13 Sep '04  
GeneralRe: Creating a dialog in ATL composite control PinmemberUttam Kumar Unik!8:03 13 Sep '04  
GeneralRe: Creating a dialog in ATL composite control PinmemberSundeep Gawande6:06 14 Sep '04  
GeneralComposite Control and Slider EDGE PinmemberBalkrishna Talele19:49 22 Jul '04  
QuestionCode for CreateObject() ? Pinmember1of320:53 18 Jun '04  
Generaluse of ms flex grid PinsussAnonymous5:55 22 Apr '04  
QuestionHow to use msflexgrid control w/ unicode? PinsussAnonymous23:41 13 Feb '04  
GeneralProblem with VS.Net 2003 Pinmemberraisch429:26 6 Feb '04  
GeneralPlease help in creating MappointControl on ATL Composite control Pinmemberbahubali12:46 1 May '03  

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.120517.1 | Last Updated 28 Mar 2003
Article Copyright 2002 by Uttam Kumar Unik!
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid