#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Tooltips

Can a tooltip be added to a button on a custom toolbar in
Excel?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Tooltips

Hi David,

Do the following:

1) Right click on your custom toolbar and select 'Customize'.
2) Right click the button on your toolbar that you want to set the
tooltip.
3) Under "Name:" type in your tooltip.
4) Close the "Customize" window and test it...

Cheers
Zantor



------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~ View and post usenet messages directly from http://www.ExcelForum.com/

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,253
Default Tooltips


it's a standard property of a commandbar control.

normally when you set the caption of a commandbarcontrol this is copied
to the tooltiptext, but you can subsequently set the tooltiptext
seperately.


This does not apply to controls on a worksheet.

You could enter a comment in the cell below the control.
I've used BottomRightCell to avoid overlap (Z-order) problems.
but TopLeftCell.Offset(,1) should work as well. Depends on sizing.

Private Sub CommandButton2_GotFocus()
Me.CommandButton2.BottomRightCell.Comment.Visible = True
End Sub
Private Sub CommandButton2_LostFocus()
Me.CommandButton2.BottomRightCell.Comment.Visible = False
End Sub


Following wont work with the controls you want, but may be an
alternative:

if you just want a handy tooltip in a cell..
you can set a "dummy" data validation with just the "input message" tab
filled in. then.. when a user activates that cell he gets the message :)


keepITcool

< email : keepitcool chello nl (with @ and .)
< homepage: http://members.chello.nl/keepitcool


"David" wrote:

Can a tooltip be added to a button on a custom toolbar in
Excel?


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Tooltips

Should there be a 'caption' option when a tooltip on a custom toolbar is
right clicked in customised mode?

The options I am getting in Excel 2002 a

Reset, Delete, Name, Copy Button Image, Paste Button Image,
Edit Button Image, Change Button Image,
Default Style, Text Only (Always), Text Only (In Menus),
Image and Text, Begin a Group, Assign Hyperlink, Assign Macro.

David

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Tooltips

Zantor already told you to use the Name

--
Regards,
Tom Ogilvy

David WIlliamson wrote in message
...
Should there be a 'caption' option when a tooltip on a custom toolbar is
right clicked in customised mode?

The options I am getting in Excel 2002 a

Reset, Delete, Name, Copy Button Image, Paste Button Image,
Edit Button Image, Change Button Image,
Default Style, Text Only (Always), Text Only (In Menus),
Image and Text, Begin a Group, Assign Hyperlink, Assign Macro.

David

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!



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
How to change tooltips for user-modified colors? Andy Smith[_2_] Excel Discussion (Misc queries) 1 September 15th 09 12:30 AM
How to change custom color's tooltips from "Color Scheme"? Andy Smith[_2_] Excel Discussion (Misc queries) 0 June 10th 08 07:27 PM
ToolTips or ScreenTips Stuart Grant New Users to Excel 3 September 30th 05 04:40 PM


All times are GMT +1. The time now is 10:54 AM.

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

About Us

"It's about Microsoft Excel"