Hey,
I'm trying to change the cursor in my application when a certain toolbar option is selected. I am using the following code which compiles and runs but does not change the cursor! I don't know why? I am using Visual C++ 6.0. IDC_GRAB is a cursor resource that I have created.
Any help would be really appreciated.
Thanks in advance.
void CProject::OnButtonGrab(){
HCURSOR lhCursor;
lhCursor = AfxGetApp()->LoadCursor(IDC_GRAB);
SetCursor(lhCursor);
....
}