WM_SETCURSOR 에 대한 메세지 핸들러 OnSetCursor 추가



BOOL C클래스::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message)

{

// TODO: Add your message handler code here and/or call default

::SetCursor(::LoadCursor(NULL, IDC_HAND));


//return CStatic::OnSetCursor(pWnd, nHitTest, message);

return TRUE;