custom icon buttons

G

Guest

greetings all,
I am trying to create a custom command bar with some self designed
icons. these icons reside in an excel file as pictures(bitmaps). some of
these icons are images to replace MS menu items that have text only on some
are special functions i have designed. but i cannot get the custom icons to
paste. here is my test code.

Sub macTestcomandbar()
Dim MyControl As CommandBarButton

Application.CommandBars.Add(Name:="atest1").Visible = True
Application.CommandBars("atest1").Controls.Add Type:=msoControlButton, _
ID:= 752, before:=1 'MS Exit
ActiveSheet.Shapes("Picture 79").CopyPicture 'pic of open door with
arrow
Set MyControl = CommandBars.FindControl(Type:=msoControlButton, ID:=752)
MyControl.PasteFace

End Sub

I have done a search on the PasteFace in this descussion group and in excel
help. the pasteface is suppost to do it but it doesn't seem to order on my
pc. Did i miss something. help and/or guidance would be appreciated.

Thanks in advance.
FSt1
 
G

Guest

hi mike,
thanks for replying.
no i did not see those threads. but i tried it and that don't seem to work
either.
but thanks anyway. I appreciate your time.

regards
FSt1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top