Changing default pointer from a cross to an arrow

M

Michael

How do I change the default pointer from a cross to an
arrow (or whatever else might be available)? My mouse
setting in control panel is for default arrow pointer,
which appears in other applications.

Thanks,

Michael
 
R

Ron de Bruin

Hi Michael

See the VBA help for

Application.Cursor = xlWait
For the hourglass

Application.Cursor = xlDefault
To set it back to normal
 
Top