Re[2]: CListView и его CListCtrl
От: Михаил А. Русаков https://www.wincatalog.com
Дата: 22.03.04 13:40
Оценка:
МАР>
МАР>BOOL CMyListView::PreTranslateMessage(MSG* pMsg) 
МАР>{
МАР>    if( ! CListView::PreTranslateMessage(pMsg) )
МАР>        return m_ctrlList.PreTranslateMessage(pMsg);

МАР>    return CListView::PreTranslateMessage(pMsg);
МАР>}
МАР>

Вот и ошибку нашел...

BOOL CMyListView::PreTranslateMessage(MSG* pMsg) 
{
    BOOL bRet = CListView::PreTranslateMessage(pMsg);
    if(!bRet)
        return m_ctrlList.PreTranslateMessage(pMsg);
    return bRet;
}
WinCatalog — Disk Catalog Software for Windows
 
Подождите ...
Wait...
Пока на собственное сообщение не было ответов, его можно удалить.