VBA Macro-assigned button to lock everything and delete the button

UncleBajubjubs

Board Regular
Joined
Jul 11, 2017
Messages
111
Office Version
  1. 2010
Hello, I have a workbook with a a button, which I want to lock everything and delete the button. The following is the code:


<code>
Sub LockEverythingAndDeleteTheButton()
Application.CutCopyMode = False 'clears clipboard
ActiveSheet.Shapes.Range(Array("Rectangle 1")).Select 'selects export button
Selection.Delete 'deletes export button
ActiveSheet.Protect Password:="PASSWORD"
ActiveWorkbook.Protect Password:="PASSWORD", Structure:=True, Windows:=False 'lock the page


End Sub
</code>

The line that doesn't work is

<code>
Selection.Delete 'deletes export button
</code>

Any ideas as to why? Thank you.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.

Forum statistics

Threads
1,214,976
Messages
6,122,539
Members
449,088
Latest member
RandomExceller01

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