They dont.
Code:m_hWnd_MsgList = CreateWindowEx(WS_EX_NOPARENTNOTIFY, "SysListView32", NULL, WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_BORDER | LVS_REPORT| WS_VSCROLL | WS_HSCROLL | WS_CLIPSIBLINGS , 0, 0, 300, 100,hWnd, NULL, m_hInst, NULL); ListView_SetExtendedListViewStyle(m_hWnd_MsgList, LVS_EX_FULLROWSELECT); //Shows The Window The ListView Is In ShowWindow(hWnd,SW_SHOWNORMAL); UpdateWindow(hWnd); ShowWindow(m_hWnd_MsgList,SW_SHOWNORMAL); UpdateWindow(m_hWnd_MsgList);




Reply With Quote