XL: Macro to Change the ToolTip Name for Custom ToolbarLast reviewed: December 1, 1997Article ID: Q126895 |
The information in this article applies to:
SUMMARYWhen you create a custom toolbar button in Microsoft Excel, the default ToolTip that is created for that button will be "Custom." The only way to change this ToolTip is to run a Visual Basic for Applications macro.
MORE INFORMATION
Visual Basic Code ExampleMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/default.aspTo change the ToolTips for a toolbar:
The following sample code will change the ToolTip of a single toolbar button.
‘--------------------------------------------------------------- Sub ChangeSingleTooltip() Toolbars("name of toolbar").ToolbarButtons("index number of button in toolbar").Name = "it's changed" End Sub ‘---------------------------------------------------------------For additional information, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q112632 TITLE : XL: Setting Status Bar Text and ToolTips for Toolbar Buttons |
Additional query words: 7.00 5.00 tool tip
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |