View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Dale Fye Dale Fye is offline
external usenet poster
 
Posts: 169
Default Application.Cursor = xlWait doesn't display hourglass

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

--
Email address is not valid.
Please reply to newsgroup only.