Hide

SftTabs/DLL 6.5 - Tab Control

Display
Print

SFTTABS_CLASS Preprocessor Symbol

Defines the SftTabs/DLL control window class name.

#define SFTTABS_CLASS "SftTabsControl65"        /* Tab Control Window Class */

Comments

The SFTTABS_CLASS preprocessor symbol defines the SftTabs/DLL control window class name.

The actual class name (SftTabsControl65) 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


Last Updated 08/13/2020 - (email)
© 2024 Softel vdm, Inc.