2
I cannot change the mouse cursor when I release the right mouse button. Part of mine code:
case WM_RBUTTONUP :
SetCursor( LoadCursor( hInstance, MAKEINTRESOURCE(IDC_MEUCURSOR1)));
ShowCursor(TRUE);
return 0;
The cursor simply disappears, nothing appears. Someone helps me?
Somewhere in your program you do
ShowCursor(FALSE);
?– Lucas Lima
Dude, maybe this video will help you! https://www.youtube.com/watch?v=0aJPBu-1YKY
– user68766