View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default PasteFace-Problem

Sub Test()
Dim cbrMenuCtrl As CommandBarButton

Worksheets("Init").Shapes(1).Copy

Set cbrMenuCtrl = Application.CommandBars("Tools").Controls.Add
With cbrMenuCtrl
.Caption = "Hello"
.OnAction = ThisWorkbook.Name & "!blabla"
.PasteFace
End With
ActiveCell.Copy
Application.CutCopyMode = False

End Sub

--
Regards,
Tom Ogilvy


"Tom" wrote in message
...
Hi

I created an entry in the commandbar with a customized icon. The code is

the
following:

Sub Test()
Dim cbrMenuCtrl As CommandBarButton

Worksheets("Init").Shapes(1).Copy

Set cbrMenuCtrl = Application.CommandBars("Tools").Controls.Add
With cbrMenuCtrl
.Caption = "Hello"
.OnAction = ThisWorkbook.Name & "!blabla"
.PasteFace
End With

Application.CutCopyMode = False

End Sub


The problem is that the icon remains in the Excel memory. When I enter the
paste command the icon will be pasted?!? How to free the memory?

Tom