|
|
|
|
|
SFTTABS_CLASS |
Defines the SftTabs/DLL control window class name.
#define SFTTABS_CLASS "SftTabsControl60" /* Tab Control Window Class */
Comments
The SFTTABS_CLASS preprocessor symbol defines the SftTabs/DLL control window class name.
The actual class name (SftTabsControl60) usually changes between SftTabs/DLL releases.
Example
C
/* Create the tab control */
pfrm->hwndTab = CreateWindow( /* Create the tab control */
TEXT(SFTTABS_CLASS), /* Window Class */
TEXT(""), /* Window Title (not used) */
WS_CHILD|WS_VISIBLE| /* Window Style */
WS_CLIPCHILDREN|WS_TABSTOP|
SFTTABSSTYLE_STANDARD,
0, 0, /* x, y */
0, 0, /* cx, cy */
hwnd, /* Parent Window */
(HMENU) IDC_TAB, /* Tab control ID */
g_hInst, /* Application Instance */
NULL); /* creation data */
if (pfrm->hwndTab == NULL) /* create failed */
return -1;
See Also C/C++ API | C++ Classes | Notifications