Hi there!
Please, someone help me with this:
I created a SDI app and added a handler for WM_MOUSEMOVE in CMainFrame.
The code looks like this:
void CMainFrame::OnMouseMove(UINT nFlags, CPoint point)
{
MessageBox("Called !!!"
CString s;
s.Format("X: %d, Y: %d",point.x,point.y);
m_wndStatusBar.SetPaneText(0,s);
CFrameWnd::OnMouseMove(nFlags, point);
}
but the "Called !!!" MessageBox doesn't show up!
WHY ????
Please, someone help me with this:
I created a SDI app and added a handler for WM_MOUSEMOVE in CMainFrame.
The code looks like this:
void CMainFrame::OnMouseMove(UINT nFlags, CPoint point)
{
MessageBox("Called !!!"
CString s;
s.Format("X: %d, Y: %d",point.x,point.y);
m_wndStatusBar.SetPaneText(0,s);
CFrameWnd::OnMouseMove(nFlags, point);
}
but the "Called !!!" MessageBox doesn't show up!
WHY ????