Thread: Excel cursor
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Vergel Adriano Vergel Adriano is offline
external usenet poster
 
Posts: 857
Default 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?