Gli esempi seguenti utilizzano il pulsante Nuovo sulla barra degli strumenti standard come esempio.

È possibile sostituire “Standard” con il nome o il numero di un altro CommandBar e il numero del Control che si desidera modificare. Usa questa macro per cambiare il testo del suggerimento:

Sub ChangeToolTipsText()

Application.CommandBars("Standard").Controls(1).TooltipText = "Test"

End Sub

Use this macro to reset the tooltips text:

Sub ResetToolTipsText()

Application.CommandBars("Standard").Controls(1).TooltipText = ""

End Sub

Use this macro if you want to reset all custom settings for a Control::

Sub ResetAllControlSettings()

Application.CommandBars("Standard").Controls(1).Reset

End Sub