3

I am developing a application on excel 2013 using vba, I want the user of application always see arrow pointer instead of excel default cursor (plus [+] looking cursor). I know there is a following method:

Application.Cursor = xlDefault

But this is not working for me, is there any API function for this?

RedLeo
  • 127
  • 3
  • 10

1 Answers1

5

To get the normal arrow cursor, use:

Application.Cursor = xlNorthwestArrow

The [+] cursor is the default, so you have to call the arrow cursor specifically.

Robbie Wxyz
  • 7,671
  • 2
  • 32
  • 47
Dmitry Pavliv
  • 35,333
  • 13
  • 79
  • 80