SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Makes the specified tab the new active tab.
C
int SftTabs_SetCurrentTab(HWND hwndCtl, int iTab);
C++
int CSftTabs::SetCurrentTab(int iTab);
hwndCtl
The window handle of the tab control.
iTab
The zero-based index of the tab to be activated. All tabs can be deactivated by specifying -1 (based on the settings defined by SetAllowAllInactive).
The return value is the index of the new active tab, otherwise -1 is returned.
The SetCurrentTab function makes the specified tab the new active tab.
When using this function to activate a new tab, the normal tab switching mechanism takes place, such as calling the SFTTABS_TABCALLBACK tab callback function, the CSftTabsPage::AllowSwitch or CSftTabsWindowPage::AllowSwitch member functions of the C++ based implementation of tabbed dialog.
A disabled tab cannot be activated. Use SetCurrentTabEx to activate a disabled tab.
This example makes the third tab the new active tab:
C
SftTabs_SetCurrentTab(hwndTab, 2);
C++
m_Tab.SetCurrentTab(2);
        HWND hwndCtl = (HWND) lParam;
        int id = LOWORD(wParam);
        int code = HIWORD(wParam);
        if (hwndCtl) {
            switch (id) {
            case IDC_P4_NEXT: {
                HWND hwndTab = SftTabs_GetTabControlFromPage(hwndDlg);
                int iTab = SftTabs_GetCurrentTab(hwndTab);
                SftTabs_SetCurrentTab(hwndTab, iTab+1);
                break;
             }
            case IDC_P4_PREVIOUS: {
                HWND hwndTab = SftTabs_GetTabControlFromPage(hwndDlg);
                int iTab = SftTabs_GetCurrentTab(hwndTab);
                SftTabs_SetCurrentTab(hwndTab, iTab-1);
                break;
void CWizDlg::OnNext() 
{
    int index = m_Tab.GetCurrentTab();
    if (index >= m_Tab.GetCount()-1)
        // last page, finish
        OnOK();
    else    
        // make next tab active
        m_Tab.SetCurrentTab(index+1);
}
void CWizDlg::OnBack() 
{
    int index = m_Tab.GetCurrentTab();
    if (index <= 0) 
        ASSERT(0); // Back button should not have been enabledSee Also C/C++ API | C++ Classes | Notifications
