我正在尝试使用 Excel VBA 将按钮添加到新的 CommandBar(用于加载项选项卡)。如果我使用 FaceId,我可以将按钮放入功能区并显示图像,但我无法显示标题。有没有办法做到这一点?我必须改用图像吗?
With Application.CommandBars.Add("Open Forms")
With .Controls.Add(msoControlButton)
.OnAction = "ThisWorkbook.FunctionFunction"
.Caption = "Call the Function"
End With
.Visible = True
End With