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

CXTabCtrl: an easier tab control for dialogs and forms

Rate me:
Please Sign up or sign in to vote.
4.50/5 (32 votes)
26 Jun 2000 376.3K   7.8K   77   79
An easier tab control

Sample Image - CXTabControl.gif

Introduction

When I first started using Microsoft VC++, I found it boring to put a tab control in a form or in a dialog. I had to create the dialogs, fill in the TCITEM structure for each of my tabs, and finally insert them into the tab control. With CXTabCtrl it is far simpler, as is illustrated below:-

InitDialog (CDialog) or InitialUpdate (CFormView) 

...
m_pMyDlg = new CMyDlg;
m_pMyDlg->Create(CMyDlg::IDD, &m_tabctrl /*CXTabCtrl variable*/);
m_tabctrl.AddTab(m_pMyDlg, "Tab caption", 0 /* image number*/);
...

The OnSelChange that you previously had to implement in the dialog (or form) to show the correct dialog is now in the CXTabCtrl, so you don't have to worry about it. You can even disable a tab so the user cannot see its contents.

m_tabctrl.EnableTab(1 /*index*/, FALSE);

You can also change the color for the following states of each tab:-

  • Selected tab
  • Unselected tab
  • Disabled tab
  • A mouse over tab
  • You can select a tab from it's caption, or dynamically change a tab. In addition to this, you can select the previous or next tab with the SelectNextTab method.

    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
    Architect VisionOne AG
    Switzerland Switzerland
    XicoLoko is a brazilian developer based in Switzerland.

    Comments and Discussions

     
    GeneralRe: Please Help me!! Pin
    tainy3-May-03 13:34
    tainy3-May-03 13:34 
    GeneralRe: Please Help me!! Pin
    Peter B.22-May-03 10:38
    Peter B.22-May-03 10:38 
    GeneralRe: Please Help me!! Pin
    cjpm10025-Jul-04 4:08
    cjpm10025-Jul-04 4:08 
    GeneralRe: Please Help me!! Pin
    rthat14-Feb-05 2:40
    rthat14-Feb-05 2:40 
    GeneralRe: Please Help me!! Pin
    rthat14-Feb-05 5:32
    rthat14-Feb-05 5:32 
    Generalhwo can iset icon to the tab Pin
    liquidsnake18329-Mar-03 11:47
    liquidsnake18329-Mar-03 11:47 
    GeneralModifying Text on Tab Pin
    mistroseth26-Mar-03 2:20
    mistroseth26-Mar-03 2:20 
    GeneralFormView Pin
    Dscho6-Feb-03 22:23
    Dscho6-Feb-03 22:23 
    GeneralFormView Sample Pin
    bpwallac25-Jan-03 18:20
    bpwallac25-Jan-03 18:20 
    GeneralCTabCtrlSSL is better Pin
    nomadik12-Jan-03 23:36
    nomadik12-Jan-03 23:36 
    GeneralRe: CTabCtrlSSL is better Pin
    ericlts7-May-03 19:25
    ericlts7-May-03 19:25 
    GeneralRe: CTabCtrlSSL is better Pin
    dchris_med24-Apr-08 14:13
    dchris_med24-Apr-08 14:13 
    GeneralExcellent job!!! Pin
    kevindu9-Jan-03 14:00
    kevindu9-Jan-03 14:00 
    QuestionKeyboard navigation? Pin
    Anonymous1-Nov-02 22:06
    Anonymous1-Nov-02 22:06 
    Generaldynamic delete tabs Pin
    silverspoon24-Jul-02 22:01
    silverspoon24-Jul-02 22:01 
    GeneralRe: dynamic delete tabs Pin
    Anonymous2-Aug-02 0:54
    Anonymous2-Aug-02 0:54 
    QuestionHow to set the caption dynamically ? Pin
    19-Feb-02 17:40
    suss19-Feb-02 17:40 
    AnswerRe: How to set the caption dynamically ? Pin
    22-Mar-02 9:38
    suss22-Mar-02 9:38 
    GeneralRe: How to set the caption dynamically ? Pin
    littledragon2319-Sep-02 8:02
    littledragon2319-Sep-02 8:02 
    Generalno tabs Pin
    9-Nov-01 19:31
    suss9-Nov-01 19:31 
    GeneralMore instructions please Pin
    21-Sep-01 4:17
    suss21-Sep-01 4:17 
    GeneralRe: More instructions please Pin
    Lindenbluete25-Jul-02 22:47
    Lindenbluete25-Jul-02 22:47 
    QuestionHow can I do to transfert datas ? Pin
    youssef24-Aug-01 0:08
    youssef24-Aug-01 0:08 
    AnswerRe: How can I do to transfert datas ? Pin
    chlud22-Apr-03 6:17
    chlud22-Apr-03 6:17 
    GeneralRe: How can I do to transfert datas ? Pin
    youssef22-Apr-03 6:33
    youssef22-Apr-03 6:33 

    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.