문제

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