m_Thumb.Create(WS_CHILD | WS_VISIBLE, this, 0);
BOOL CBitWnd::Create(UINT wStyle, CWnd * pParentWnd, UINT nID)
{
LPCTSTR lpWndName = NULL;
lpWndName = AfxRegisterWndClass(CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW,
AfxGetApp()->LoadStandardCursor(IDC_ARROW),
(HBRUSH)GetStockObject(BLACK_BRUSH), NULL);
if( lpWndName == NULL )
return FALSE;
//
// 2.0 Create the window directly...
//wStyle |= WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
return CWnd::Create(lpWndName, NULL, wStyle, CRect(0, 0, 0, 0), pParentWnd, nID);
}