Excel mark cursor

G

Guest

HI, Would it be possible to get an arrow or similar (eg pointer) when u have
the cursor over a cell in excell. SAP does allow a similar feature but it
doesnt seem to have it in excel. Any ideas? thanks
 
G

Guest

try:

Sub tst()
Application.Cursor = xlNorthwestArrow
MsgBox ("")
Application.Cursor = xlIBeam
MsgBox ("")
Application.Cursor = xlWait
MsgBox ("")
Application.Cursor = xlDefault
End Sub


"Joe" skrev:
 
G

Guest

Can that work for any worksheet when I open it?

excelent said:
try:

Sub tst()
Application.Cursor = xlNorthwestArrow
MsgBox ("")
Application.Cursor = xlIBeam
MsgBox ("")
Application.Cursor = xlWait
MsgBox ("")
Application.Cursor = xlDefault
End Sub


"Joe" skrev:
 
G

Guest

well i ges so but not sure

by the way do u get a NorthwestArrow ?
i dont - just getting a standard arrow !


"Joe" skrev:
 
G

Gord Dibben

Do you mean instead of the fat white cross?

I have never heard of a method to change that in Excel.


Gord Dibben MS Excel MVP
 
G

Guest

I dont get any arrow. How can i get one?

excelent said:
well i ges so but not sure

by the way do u get a NorthwestArrow ?
i dont - just getting a standard arrow !


"Joe" skrev:
 
G

Guest

1.where do i need to enter the code below so it works everytime i use a excel
spreadsheet. I am afraid I will need all the steps.
2. So i do CTL+F and the celll will be brought up
 
G

Guest

Lets make a test to se if u can use any of the 3 choises u get

1. In ur sheet type ALT+F11
2. copy my code and select Insert>Module Paste code here
3. In ur sheet type ALT+F8 and select tst and Run

macro show the 3 arrow-type u can get
and finaly reset to normal

post me back if u can use som of the 3

"Joe" skrev:
 
G

Gord Dibben

Sub tst()
application.cursor = xlnorthwest arrow
end sub

sub untst()
application.cursor = xldefault
end sub


Cursor Property

Returns or sets the appearance of the mouse pointer in Microsoft Excel.
Read/write XlMousePointer.

XlMousePointer can be one of these XlMousePointer constants.

xlDefault The default pointer.
xlIBeam The I-beam pointer.
xlNorthwestArrow The northwest-arrow pointer.
xlWait The hourglass pointer.


Gord
 
G

Gord Dibben

1. Store it in a general module in your Personal.xls file so's it is available
for all open workbooks.

For more on Personal.xls see here.............

http://snipurl.com/1kugy

2. CTRL + F brings up the Find Dialog box. What cell are you referring to?


Gord
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top