void CMybrowserView::OnMouseMove(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
CString str;
str.Format("x=%d,y=%d",point.x,point.y );
GetParent()->GetDescendantWindow(AFX_IDW_STATUS_BAR)->SetWindowTextW (str); CFormView::OnMouseMove(nFlags, point);
}
以上代码是多文档 View类中的,编译没错,运行会出错,中断
为什么啊?