Excel cursor
Hi,
To change the cursor to the arrow:
Sub ChangeCursor()
Application.Cursor = xlNorthwestArrow
End Sub
To change it back:
Sub ResetCursor()
Application.Cursor = xlDefault
End Sub
--
Hope that helps.
Vergel Adriano
"doos" wrote:
I do not like the inflated + cursor of Excel - it is lousy and imparts a
feeling of inaccurate pointing.
Can one change this to the normal arrow type cursor? If so, how?
|