I need the vba code to delete all the active x control images on a worksheet

dpaton05

Well-known Member
Joined
Aug 14, 2018
Messages
2,352
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
I am still learning to code and I don't yet know how to delete all the active x control images on a worksheet. Could someone help me please?
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
.
Code:
Option Explicit


Sub byby()
    ActiveSheet.Shapes.SelectAll
    Selection.Delete
End Sub
 
Upvote 0
Haven't tried that code but I found some other code that works:

Private Sub cmdNoSig_Click()
Dim Pic As Object
For Each Pic In ActiveSheet.Pictures
If Not Intersect(Pic.TopLeftCell, Range("A30:B300")) Is Nothing Then
Pic.Delete
End If
Next Pic
End Sub


There are some pics that I don't want to delete above row 30.
 
Last edited:
Upvote 0
Code:
Sub DelShape()
    Dim Sh As Shape
    Dim Ans As Integer
    With ActiveSheet
        For Each Sh In .Shapes
            
            Ans = MsgBox(Sh.Name & " located at (T:" & Sh.Top & ", L:" & Sh.Left & ")" & vbCr & vbCr & "Delete?", vbYesNoCancel + vbQuestion)
            Select Case Ans
            Case vbYes
                Sh.Delete
            Case vbCancel
                Exit Sub
            End Select
        Next Sh
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,941
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top