Change cursor to hourglass

S

suputnic

How can I do this in VBA?

System.Cursor = wdCursorWait

only works on a timer loop which sucks. I want to change to hourglass
then change back when I say.
 
E

epsobolik

I thought you did that at the beginning of the code where you wanted the
cursor to be an hourglass and then add:

System.Cursor = wdCursorNormal

where you want the cursor to return to normal
 
Top