Save this code in a Word module, and run the GetAllCB macro.
You should get a list of all commandbars with their icon image, caption and control ID. Custom toolbars (i.e. not "Builtin") are identified)
Sub GetAllCB()
Dim cb As CommandBar
Dim strText As String
For Each cb In Application.CommandBars
If cb.Name = "WordCodePrint" Or cb.Name = "WordVBACodePrint" Then
Call GetFaces(cb, strText)
Else
Call GetFaces(cb, strText)
End If
Next cb
End Sub
Sub GetFaces(cb, strText)
Dim objControl As Office.CommandBarControl
Dim objPopupControl As Office.CommandBarPopup
On Error Resume Next
Selection.TypeParagraph
Selection.TypeText "CommandBar: " & cb.Name & vbCrLf
Selection.MoveDown unit:=wdLine, Count:=2
For Each objControl In cb.Controls
If objControl.BuiltIn = True Then
Else
Selection.TypeText "Custom Toolbar" & vbCrLf & vbCrLf
End If
Select Case objControl.Type
Case msoControlPopup, _
msoControlButtonPopup, _
msoControlGraphicPopup, _
msoControlSplitButtonPopup
strText = strText & vbCrLf & vbCrLf & _
objControl.Caption & _
" (Submenu) - " & objControl.ID
Set objPopupControl = objControl
Call GetFaces( _
objPopupControl.CommandBar, strText)
Case Else
strText = vbTab & _
objControl.Caption & " - " & objControl.ID
objControl.CopyFace
Selection.Paste
Selection.TypeText strText
Selection.TypeParagraph
End Select
'End If
Next
Set objControl = Nothing
Set objPopupControl = Nothing
End Sub
Regards
dmang