Вопрос

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?

Это было полезно?

Решение

To get the normal arrow cursor, use:

Application.Cursor = xlNorthwestArrow

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top