Set Hourglass On

  • Thread starter Thread starter dhstein
  • Start date Start date
I'm guessing you mean the mouse cursor on the screen, right? You can change
it to the "hourglass" (it is a spinning circle on my Vista system by the
way) using this line of code...

Application.Cursor = xlWait

But keep in mind it will remain the "hourglass" symbol until you change it
back using this line of code..

Application.Cursor = xlDefault
 
Application.Cursor = xlWait
'---do something
Application.Cursor = xldefault

If this post helps click Yes
 
Jacob, Rick,

Thanks for the answer.



Jacob Skaria said:
Application.Cursor = xlWait
'---do something
Application.Cursor = xldefault

If this post helps click Yes
 
Back
Top