Click here to Skip to main content
15,884,629 members
Articles / Desktop Programming / WTL
Article

COM Category ComboBox

Rate me:
Please Sign up or sign in to vote.
3.00/5 (2 votes)
4 Oct 20012 min read 58.7K   1.1K   15   4
A ComboBox listing all COM objects from specified COM Category

Sample Image

Introduction

I like the idea of programming by components. After reading on the topic of COM Categories I started to thing about a possible way to make kind of plugins for my applications. The first idea came at home when I was thinking about my job. We do fingerprint identification and use multiple hardware to capture a fingerprint picture. So I generalized fingerprint scanners as hardware pieces that delivers fingerprint pictures. Then I built an interface that is generic to all scanners. This allow us now to choose the scanner we would like to use at run time.
You may get more information in the articles from Len Holgate: Writing extensible applications, Component Category Manager wrapper classes.

ComboBox

The ComboBox is built according to an CATID (UUID) representing the COM Category. It searches the registry all COM objects implementing that Category using ICatInformation. Then it add them in the list box of the ComboBox. It also sets the 32-bit value associated with the specified item in the combo box to be a CString's pointer containing the interface identifier (IID). This will permit to create the COM object according to user choice at runtime. To optimize the speed of displaying, the ComboBox search the registry only if a user click on the dropdown. It also cache in the registry the latest value selected for creation speed.

Usage

To use this WTL control, place a ComboBox on your dialog. Add a member variable to your dialog implementation file:

CCOMCategoriesComboBox m_catCombo;

In the OnInitDialog() event handler, add the following line:

LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
{
    ...

    // Attach controls to members
    m_catCombo.SubclassWindow( GetDlgItem(IDC_COMBO_CAT) );

    ...
}

Add the following reflection macro to your main message map:

BEGIN_MSG_MAP(CMainDlg)
    ...
    REFLECT_NOTIFICATIONS()
END_MSG_MAP()

Use this to initialize the CCOMCategoriesComboBox in the dialog constructor:

CMainDlg() :
    m_catCombo( "{00021493-0000-0000-C000-000000000046}", // Internet Explorer Browser Band CATID
                CString(_T("SOFTWARE\\Tech Head\\COMCategoryComboBox")),
                CString(_T("IE Browser Band")) )
{
}

To get user's selected COM object, you have two solutions:

  1. Read the value written in the registry at HKLM\SOFTWARE\Tech Head\COMCategoryComboBox\IE Browser BandIID
  2. Use CComboBox::GetItemDataPtr to retrieves the application-supplied 32-bit value associated with the specified combo box item that is a pointer to a CString containing the interface identifier (IID).

Faced Problems

None (at the moment ;-).

History

Version 1.01 October 4, 2001
. Added comments to the source code.
. Updated the article on Tech Head web site.
. Submited the article to Codeproject web site.
Version 1.00 October 3, 2001
. Added the article on Tech Head web site.

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
Team Leader
France France
I am an experienced Team Leader & Senior Solutions Architect with a passion for shipping high-quality products by empowering development team and culture toward an agile mindset. I bring technical vision and strategy, leading engineering teams to move product, processes and architecture forward.

Comments and Discussions

 
GeneralI want to Fingerprint source Pin
naraelim29-Feb-08 0:05
naraelim29-Feb-08 0:05 
GeneralFingerprint Pin
vutrunghieu9-Jun-05 0:59
vutrunghieu9-Jun-05 0:59 
GeneralEdit Pin
Jiri Tesar10-Apr-02 4:29
Jiri Tesar10-Apr-02 4:29 
GeneralRe: Edit Pin
Laurent Kempé10-Apr-02 7:23
Laurent Kempé10-Apr-02 7:23 

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.