Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 493
Default mouse pointer as a hand

I'd like to have a mouse pointer as a hand when clicking some specific cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 694
Default mouse pointer as a hand

Hi,
Are you using the HYPERLINK( ) function or the hyperlink tool from the menu?
As a function:
HYPERLINK( link , text_to_display )
the 'link' parameter can be a bit tricky sometimes.
check at the online help for more details.

Regards,
Sébastien


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking some specific cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 493
Default mouse pointer as a hand

Thanks, Sebastien.
I'm using the hyperlink tool from the menu and I couldn't find anything from
the help file.

So, if you can, please advise how I can do it.

"sebastienm" wrote:

Hi,
Are you using the HYPERLINK( ) function or the hyperlink tool from the menu?
As a function:
HYPERLINK( link , text_to_display )
the 'link' parameter can be a bit tricky sometimes.
check at the online help for more details.

Regards,
Sébastien


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking some specific cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 226
Default mouse pointer as a hand

Using the function you set the hypelink path as a string. You must provide
the full path for other workbooks or just the workbook name if the link is to
a cell in the current workbook. E.g if the hyperlink is in Book2 and
referencing a cell in Book2 then the formula would be
=HYPERLINK("[Book2]Sheet1!A1","").
The final "" means that no text will be shown in the cell

Regards
Rowan

"Alex" wrote:

Thanks, Sebastien.
I'm using the hyperlink tool from the menu and I couldn't find anything from
the help file.

So, if you can, please advise how I can do it.

"sebastienm" wrote:

Hi,
Are you using the HYPERLINK( ) function or the hyperlink tool from the menu?
As a function:
HYPERLINK( link , text_to_display )
the 'link' parameter can be a bit tricky sometimes.
check at the online help for more details.

Regards,
Sébastien


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking some specific cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 493
Default mouse pointer as a hand

Thanks, Rowan.
I've entered this but anyway the message such as "[Book1]Sheet1!A1 - Click
once to follow. Click and hold to select this cell" appears.

How could I get rid of that as well and how I could have some word on that
cell as I have it making hyperlink from the tool's menu?

"Rowan" wrote:

Using the function you set the hypelink path as a string. You must provide
the full path for other workbooks or just the workbook name if the link is to
a cell in the current workbook. E.g if the hyperlink is in Book2 and
referencing a cell in Book2 then the formula would be
=HYPERLINK("[Book2]Sheet1!A1","").
The final "" means that no text will be shown in the cell

Regards
Rowan

"Alex" wrote:

Thanks, Sebastien.
I'm using the hyperlink tool from the menu and I couldn't find anything from
the help file.

So, if you can, please advise how I can do it.

"sebastienm" wrote:

Hi,
Are you using the HYPERLINK( ) function or the hyperlink tool from the menu?
As a function:
HYPERLINK( link , text_to_display )
the 'link' parameter can be a bit tricky sometimes.
check at the online help for more details.

Regards,
Sébastien


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking some specific cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 226
Default mouse pointer as a hand

Hi Alex

I don't think you can remove the screen tip completely using either method.
If you use the Hyperlink tool you can set the screen tip to a single space by
clicking on the ScreenTip button. This will then show a small blank box on
the screen. Sorry, I think that's the best I can do.

Regards
Rowan

"Alex" wrote:

Thanks, Rowan.
I've entered this but anyway the message such as "[Book1]Sheet1!A1 - Click
once to follow. Click and hold to select this cell" appears.

How could I get rid of that as well and how I could have some word on that
cell as I have it making hyperlink from the tool's menu?

"Rowan" wrote:

Using the function you set the hypelink path as a string. You must provide
the full path for other workbooks or just the workbook name if the link is to
a cell in the current workbook. E.g if the hyperlink is in Book2 and
referencing a cell in Book2 then the formula would be
=HYPERLINK("[Book2]Sheet1!A1","").
The final "" means that no text will be shown in the cell

Regards
Rowan

"Alex" wrote:

Thanks, Sebastien.
I'm using the hyperlink tool from the menu and I couldn't find anything from
the help file.

So, if you can, please advise how I can do it.

"sebastienm" wrote:

Hi,
Are you using the HYPERLINK( ) function or the hyperlink tool from the menu?
As a function:
HYPERLINK( link , text_to_display )
the 'link' parameter can be a bit tricky sometimes.
check at the online help for more details.

Regards,
Sébastien


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking some specific cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,298
Default mouse pointer as a hand

If you want to run a procedure - why else have a hand? - then you could place
a rectangle ( from the draing menu) over the cell. use the ALT key to set the
rectangle to the cell, assign a 'macro' and set the rectangles properties to
no line an no fill. Now when the mouse moves over the invisible rectangle,
it changes to a hand


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking some specific cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 493
Default mouse pointer as a hand

Thanks, Patrick.

Where and how could I set up those properties?



"Patrick Molloy" wrote:

If you want to run a procedure - why else have a hand? - then you could place
a rectangle ( from the draing menu) over the cell. use the ALT key to set the
rectangle to the cell, assign a 'macro' and set the rectangles properties to
no line an no fill. Now when the mouse moves over the invisible rectangle,
it changes to a hand


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking some specific cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,049
Default mouse pointer as a hand

right click when the shape is selected and choose format from the pop-up
menu

"Alex" wrote in message
...
Thanks, Patrick.

Where and how could I set up those properties?



"Patrick Molloy" wrote:

If you want to run a procedure - why else have a hand? - then you could
place
a rectangle ( from the draing menu) over the cell. use the ALT key to set
the
rectangle to the cell, assign a 'macro' and set the rectangles properties
to
no line an no fill. Now when the mouse moves over the invisible
rectangle,
it changes to a hand


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking some specific
cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks



  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default mouse pointer as a hand

Patrick

How can you get a hand to show per cell - similar to what happens in a
browser. I want the mouse cursor to change when it is over a clickable cell
(ie: go or do something) but not when over other cells.

Is this as clear as mud?

"Patrick Molloy" wrote:

right click when the shape is selected and choose format from the pop-up
menu

"Alex" wrote in message
...
Thanks, Patrick.

Where and how could I set up those properties?



"Patrick Molloy" wrote:

If you want to run a procedure - why else have a hand? - then you could
place
a rectangle ( from the draing menu) over the cell. use the ALT key to set
the
rectangle to the cell, assign a 'macro' and set the rectangles properties
to
no line an no fill. Now when the mouse moves over the invisible
rectangle,
it changes to a hand


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking some specific
cells.
I'm trying to use hyperlink but don't know how to get rid of the the
hyperlink path showing.

Could anybody advise anything?

Thanks






  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default mouse pointer as a hand

There is no MouseOver event for a range, so there is no way to
detect what cell the mouse is over. Thus, you cannot change the
cursor for a single cell. The Cursor property is
application-wide, and doesn't support a Hand image anyways, so
you can't do what you want to do.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com

"gavins_satori" wrote
in message
...
Patrick

How can you get a hand to show per cell - similar to what
happens in a
browser. I want the mouse cursor to change when it is over a
clickable cell
(ie: go or do something) but not when over other cells.

Is this as clear as mud?

"Patrick Molloy" wrote:

right click when the shape is selected and choose format from
the pop-up
menu

"Alex" wrote in message
...
Thanks, Patrick.

Where and how could I set up those properties?



"Patrick Molloy" wrote:

If you want to run a procedure - why else have a hand? -
then you could
place
a rectangle ( from the draing menu) over the cell. use the
ALT key to set
the
rectangle to the cell, assign a 'macro' and set the
rectangles properties
to
no line an no fill. Now when the mouse moves over the
invisible
rectangle,
it changes to a hand


"Alex" wrote:

I'd like to have a mouse pointer as a hand when clicking
some specific
cells.
I'm trying to use hyperlink but don't know how to get rid
of the the
hyperlink path showing.

Could anybody advise anything?

Thanks






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
mouse pointer Atishoo Excel Discussion (Misc queries) 2 June 16th 08 04:25 PM
mouse pointer robnsd Excel Discussion (Misc queries) 2 April 20th 07 10:17 PM
Why hand pointer in one and not the other David Excel Discussion (Misc queries) 1 August 21st 06 10:47 PM
Changing the Mouse Pointer to Hand just like on Hyperlinks sameerce[_18_] Excel Programming 5 June 23rd 04 04:55 PM
mouse pointer jim c. Excel Programming 0 September 6th 03 11:25 PM


All times are GMT +1. The time now is 01:53 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"