1. Core issues list rev 41 and library issues lists rev 42 available
2. The C++ core issues list rev 42 and library issues list rev 43 are now available
3. 2008-12 mailing available, plus core issues list rev 60 and library issues list rev 61
4. 2008-12 mailing available, plus core issues list rev 60 and library issues list rev 61
5. 2008-12 mailing available, plus core issues list rev 60 and library issues list rev 61
6. Security issue running unmanaged code in a win form ctrl hosted in - CSharp/C#
7. Handling ENter event on LIst Ctrl
I have a list control. On doubleclick of list item, a new dlg opens. Now, i want to handle 'OnEnter Key'also. i.e. When a list item is selected & Enter key is pressed, the new dlg shd open
I tried implementing with NM_RETURN. But, the application does not catch this msg
Also i tried with LVN_KEYDOWN.
void CListExDlg::OnKeydownList(NMHDR* pNMHDR, LRESULT* pResult)
LV_KEYDOWN* pLVKeyDow = (LV_KEYDOWN*)pNMHDR
// TODO: Add your control notification handler code her
if(pLVKeyDow->wVKey == VK_RETURN
AfxMessageBox("KeyDOwn");
els
AfxMessageBox("NO");
*pResult = 0
But it does not catch 'Enter' Key of KeyBoard.
But when if(pLVKeyDow->wVKey == VK_SHIFT), this works fine
Please let me know how 'Enter' Key event can be checked
8. How to HitTest an item of a List Ctrl owned by another thread