I want to add an image to a toolbar button I created with VBA in MS Word 2003 with the following code:
Sub commandBarWithButton()
Dim cbar As CommandBar
Dim but As CommandBarButton
Set cbar = CommandBars.Add("cBar", msoBarTop)
cbar.Visible = True
Set but = CommandBars("cBar").Controls.Add(msoControlButton)
but.Visible = True
With but
.Caption = "Save"
.Style = msoButtonCaption
End With
End Sub
Which commands should I add to the above code?