I can not change the mouse cursor when I release the right mouse button. Part of my code:
case WM_RBUTTONUP :
SetCursor( LoadCursor( hInstance, MAKEINTRESOURCE(IDC_MEUCURSOR1)));
ShowCursor(TRUE);
return 0;
The cursor simply disappears, nothing appears. Someone help me?