SetCursor question
-
I set the cursor to IDC_WAIT but that shows me the hourglass cursor. However I want to show the arrow+hourglass cursor, where it is has both the arrow and the hourglass, but I can't find the ID for this cursor. Does anyone know what the ID is (i.e. IDC_what???)
There is sufficient light for those who desire to see, and there is sufficient darkness for those of a contrary disposition. Blaise Pascal
-
I set the cursor to IDC_WAIT but that shows me the hourglass cursor. However I want to show the arrow+hourglass cursor, where it is has both the arrow and the hourglass, but I can't find the ID for this cursor. Does anyone know what the ID is (i.e. IDC_what???)
There is sufficient light for those who desire to see, and there is sufficient darkness for those of a contrary disposition. Blaise Pascal
As you can read on the MSDN documentation, at LoadCursor Function (Windows)[^], the right ID for what you want is
IDC_APPSTARTING
Cheers, Sauro