changing pointers

Corticus

Well-known Member
Joined
Apr 30, 2002
Messages
1,579
Simple, non-important but would-be useful information-

Can you change the default mouse icon in Excel?
(yes I checked the manual)

That's it,
Corticus
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
G'day,

I don't know of a standard way to do this with excel, but the windows method would be to go to start/settings/control panel/mouse/pointers.

Hope that helps somewhat
Adam
 
Upvote 0
I actually wanted to change the cross looking thing in Excel , not Windows.

Corticus
 
Upvote 0
Corticus

I don't believe you can change the cross icon. Bit of a pain, I've spent a lot of time in the past on XL97 and 2000 trying to do this.
 
Upvote 0
Hi Corticus.
Without messing around with the Windows API you only get four choices within Excel.<pre>

Private Sub Workbook_Open()
Application.Cursor = xlNorthwestArrow
'or
Application.Cursor = xlDefault
'or
Application.Cursor = xlWait
'or
Application.Cursor = xlIBeam
End Sub</pre>

If you want to go the API route, you can use any valid cursor on your sys...

Tom
This message was edited by TsTom on 2002-05-13 09:22
 
Upvote 0
thanks!!

I used:

Sub Auto_Open()
Application.Cursor = xlNorthwestArrow
End Sub

worked perfect, sub workbook_open() didn't work, though

you just solved something my boss has been nagging me about since we started(almost a year ago)converted all of our Quttro Pro 9 files to Excel...
This board rocks!

-Corticus
 
Upvote 0

Forum statistics

Threads
1,214,645
Messages
6,120,711
Members
448,984
Latest member
foxpro

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top