我在对话框中按如下方式添加了一个从CVIEW继承的视图类
m_imageView = new CimageView();

//ASSERT(m_pView1 != NULL);
if (!(m_imageView)->Create(NULL, NULL, WS_CHILD,
CRect(rect.left+25,rect.top,rect.right,rect.bottom), this, NULL, NULL))
{
AfxMessageBox(_T("Create view1 failed"));
return TRUE;
}

m_imageView->ShowWindow(SW_SHOW);
m_imageView->OnInitialUpdate();
现在要想改类发送消息
  但m_imageView->m_hWnd  句柄  不对!