Your code looks fine on both sides. Did you confirm that this message
Ajay Kalra wrote:
You SendMessage code looks fine. How about the code on the subclassed
control side. Are you putting the appropriate message map to handle the
message. Also you should use Spy++ to see that the message is indeed
coming to the control.
----
Ajay
Hi Ajay,
Here is the code on the other side for Control1
CMyListCtrlOne.h
void CMyListCtrlOne::OnNMClick(NMHDR *pNMHDR, LRESULT *pResult)
{
CFrameWnd * pFrame = (CFrameWnd *)(AfxGetApp()->m_pMainWnd);
//now get the view from frame
CCView *mv = (CCView*)pFrame->GetActiveView();
mv->m_ListCtrlTwo.SendMessage(WM_INSERT_ITEMS,0,0);
}
Here is the code on the other side for Control2
subclassed control 2
CMyListCtrlTwo.h
afx_msg LRESULT OnInsertItemsinStudy(WPARAM,LPARAM);
CMyListCtrlTwo.cpp
BEGIN_MESSAGE_MAP(CMyListCtrlTwo, CListCtrl)
ON_MESSAGE(WM_INSERT_ITEMS,OnInsertItemsinStudy)
END_MESSAGE_MAP()
LRESULT CMyListCtrlTwo::OnInsertItemsinStudy(WPARAM,LPARAM)
{
AfxMessageBox(_TEXT("IN list ctrl two"),0,0);
return 1;
}