Home | Info | Community | Development | myReactOS | Contact Us
[private]
Definition at line 144 of file MainWindow.cpp.
Referenced by OnCreate().
{ INT StatWidths[] = {110, -1}; /* widths of status bar */ BOOL bRet = FALSE; /* Create the status bar */ m_hStatusBar = CreateWindowExW(0, STATUSCLASSNAME, NULL, WS_CHILD | WS_VISIBLE | SBARS_SIZEGRIP, 0, 0, 0, 0, m_hMainWnd, (HMENU)IDC_STATUSBAR, g_hInstance, NULL); if (m_hStatusBar) { /* Set the width */ bRet = (BOOL)SendMessage(m_hStatusBar, SB_SETPARTS, sizeof(StatWidths) / sizeof(INT), (LPARAM)StatWidths); } return bRet; }