'This code is run in the menu handler of a standard VBAddin project. I
'don't save the project. Run the debug window code to determine the command 
'id, then use code to get a buttonface.
Dim Button As Office.CommandBarButton
Dim pic As Picture
    Set Button = VBInstance.CommandBars.FindControl(, 1813)
    Button.CopyFace
    Set pic = Clipboard.GetData(vbCFBitmap)
    SavePicture pic, "D:\Book\Tools\Src\PostBuild\Mockup\Bmp\ShowNext.bmp"

'Run this in the debug window after setting up a custom toolbar in the target IDE
For Each Var In VBInstance.CommandBars("StealBmp").Controls: Print Var.Caption, Var.Id: Next
