I just downloaded the zip and made the adjustments.. I just emailed the project back to you.. Just incase here is the code...
LRESULT CChildView::WindowProc(UINT message, WPARAM wParam, LPARAM lParam)
{
if(message == WM_MOUSEMOVE)
{
CMainFrame* pMain = (CMainFrame*)AfxGetMainWnd();
ASSERT(pMain);
TRACE("Mouse Movement\n");
CPoint point = (CPoint)lParam;
CString str;
str.Format("OnMouseMove at (%d,%d)",point.x,point.y);
pMain->SetMessageText(_T(str));
}
return CWnd ::WindowProc(message, wParam, lParam);
}
Rob Whoever said nothing's impossible never tried slamming a revolving door!