Dear friends,
I need a help with a Wait (Hour Glass) cursor. In my MFC program, I have the following code:
void CBookDoc::SomeMethod()
{
AfxGetApp()->DoWaitCursor(1); // display the hourglass cursor
...
// Some stuff is done
...
AfxGetApp()->DoWaitCursor(-1); // -1->>remove the hourglass cursor
}
I wonder why the cursor never changes to show the hour glass?