End Google Ads 201810 - BS.net 01 --> I have a dialog form, where I have an listctrl. On listcontrol set focus handler, I need to send a click message, like I would click on listcontrol. I try in follow way, but didn't work it

void CMyPage::OnSetfocusListFeature(NMHDR* pNMHDR, LRESULT* pResult) { // TODO: Add your control notification handler code here NMHDR nmh; nmh.code = NM_CLICK; nmh.idFrom = m_ListFeature.GetDlgCtrlID(); nmh.hwndFrom = m_hWnd; SendMessage(WM_NOTIFY,0,(LPARAM)&nmh); *pResult = 0; }
... can you tell me hat i'm doing wrong ?