MousePointer

  • Thread starter Thread starter Mangesh Yadav
  • Start date Start date
M

Mangesh Yadav

I have an excel application with some VB. When I press a commandbutton on a
spreadsheet, my application starts performing some action and goes on for a
minute or so. During this time, I would like to force the mouse icon to
display the "busy" icon (the hourglass figure). Once the calculation is
over, I would like to change it back to the default.

Google-ing over the past posts gave me how to acieve this for a button or a
form, but not for the whole application.
 
Found the solution:

Application.Cursor = xlWait

and

Application.Cursor = xlDefault


Mangesh
 
Back
Top