Below is tipical code to show custom menu etc...
With .Controls.Add(Type:=msoControlButton)
.Caption = "Time Sheet"
.FaceId = "1106"
.OnAction = "OpenTimeSheet"
End With
On Standard Excel (2002) you can able to 'Edit Button Image' via the Customize Dialog box.
It is possible to show that Edited Button via VBA?
I thought about .FaceId = myCustomButton
But how and where do I store the actual Edited Button Image?
With .Controls.Add(Type:=msoControlButton)
.Caption = "Time Sheet"
.FaceId = "1106"
.OnAction = "OpenTimeSheet"
End With
On Standard Excel (2002) you can able to 'Edit Button Image' via the Customize Dialog box.
It is possible to show that Edited Button via VBA?
I thought about .FaceId = myCustomButton
But how and where do I store the actual Edited Button Image?