質問

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
役に立ちましたか?

解決

Change the .Style bit to this

.Style = msoButtonCaption
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top