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
Sets the CSftTabsWindowPage based object pointer attached to the specified tab.
C++
void CSftTabs::SetTabWindowPage(int iTab, CSftTabsWindowPage* pPage, HWND hWnd = NULL);
iTab
The zero-based index of the tab for which information is to be set.
pPage
A pointer to the CSftTabsWindowPage based object representing the page attached to the tab specified.
hwnd
Reserved for future use.
The SetTabWindowPage function sets the CSftTabsWindowPage based object pointer attached to the specified tab.
This function is used by the CSftTabsWindowSheet and CSftTabsWindowPage class implementation. When a tab is made the active tab, the CSftTabsWindowPage based dialog is created or made visible.
C++
/* We are using new features */ m_MainTab.SetVersion(SFTTABS_6_5); index = m_MainTab.AddTab(_T("&1 Text")); m_MainTab.SetToolTip(index, _T("Displays the currently opened file")); m_MainTab.SetTabInfo(index, &Tab0); m_MainTab.SetTabWindowPage(index, m_pTabEdit); m_pTabEdit->SaveContext(&m_SavedContext); // save doc/view context
See Also C/C++ API | C++ Classes | Notifications