我想在长时间任务之前更改光标。我用setcursor改变了它,但光标没有改变。
这是我的代码:
HCURSOR hWait = AfxGetApp()->LoadStandardCursor(IDC_WAIT) ;
HCURSOR hDefault = AfxGetApp()->LoadStandardCursor(IDC_ARROW);
::SetCursor(hWait);
//a long procedure
::SetCursor(hDefault);
我究竟做错了什么?