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_SetCurrentTabEx(HWND hwndCtl, int iTab);
C++
int CSftTabs::SetCurrentTabEx(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 SetCurrentTabEx 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.
SetCurrentTab also changes the current tab, but only SetCurrentTabEx can be used to activate a disabled tab.
This example makes the third tab the new active tab:
C
SftTabs_SetCurrentTabEx(hwndTab, 2);
C++
m_Tab.SetCurrentTabEx(2);
See Also C/C++ API | C++ Classes | Notifications