PasteFace-Problem

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

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
 
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
 
Back
Top