Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change excel default cursor to arrow pointer

Tags:

vba

excel-2013

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?

like image 986
RedLeo Avatar asked Mar 04 '26 12:03

RedLeo


1 Answers

To get the normal arrow cursor, use:

Application.Cursor = xlNorthwestArrow

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

like image 190
Dmitry Pavliv Avatar answered Mar 07 '26 01:03

Dmitry Pavliv



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!