Change picture of commandbar item
Posted by Bruno on December 11, 2001 7:56 AM
Is there a way, with vba, to change the picture of a commandbar.item ?
This is how far I known the way :
ActiveSheet.Shapes("Picture 1").Select
Selection.Copy
Application.CommandBars("Bruno").Controls.Add Type:=msoControlButton, Id:=2950, Before:=4
and then I have to paste the picture...
Application.CommandBars("Bruno").Controls(4) . . .
Any idea's ?