Application.Cursor = xlWait doesn't display hourglass

D

Dale Fye

I'm trying to change the cursor to an hourglass when my code saves the
current spreadsheet, then back again.

The Activeworkbook.Save portion of this code is working properly, but I
never see the cursor change to an hourglass and back. Any recommendations?

Private sub cmd_Save_Click

Application.Cursor = xlWait
ActiveWorkbook.Save
Application.Cursor = xlDefault

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top