Question

I am making add in toolbar and want to display button as text. Any suggestions?

With oButton2
    .DescriptionText = "This is my first button"
    .Caption = "Bullets"
    .OnAction = "Button2"
    .Style = msoButtonIcon
    .FaceId = 55 'chooses icon #55 from the available Office icons
End With
Was it helpful?

Solution

Change the .Style bit to this

.Style = msoButtonCaption
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top