How to set new cursor?
I set the cursor of the initial WNDCLASSEX struct of a window to LoadCursor(NULL, IDC_ARROW). However, at another point in my app, I want to change the cursor appearance. I have tried using
SetCursor(LoadCursor(g_hInst, MAKEINTRESOURCE(IDC_HANDCURSOR)));
and
SetClassLong(hWnd, GCL_HCURSOR, (LONG)LoadCursor(g_hInst, MAKEINTRESOURCE(IDC_HANDCURSOR)));
but neither seem to work. Please post suggestions on how to fix my problem here, thanks.
Fierytycoon

