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
Standard constructor.
C++
public: CSftTabsDialog::CSftTabsDialog(UINT IDD, CWnd* pParent = NULL); CSftTabsDialog::CSftTabsDialog(LPCTSTR lpszTemplate, CWnd* pParent = NULL); protected: CSftTabsDialog::CSftTabsDialog();
IDD
ID of the dialog resource used to create the dialog.
lpszTemplate
A null-terminated string containing the name of the dialog resource used to create the dialog.
pParent
A pointer to the parent window's CWnd based object. This parameter may be NULL if the tabbed dialog doesn't have a parent window.
A tabbed dialog is created in two steps. First, call the constructor CSftTabsDialog, then use DoModal to create a modal dialog or call Create to create a modeless tabbed dialog. Override the OnInitDialog member function to initialize the tab control and associate CSftTabsPage objects to tabs.
This example invokes a modal tabbed dialog:
CMainDlg MainDlg; // tabbed dialog MainDlg.DoModal();
See Also C/C++ API | C++ Classes | Notifications