Destroy command button with a Macro?

  • Thread starter Thread starter grasping@straws
  • Start date Start date
G

grasping@straws

Any way to delete a command button once it's been clicked on?
(Thinking about a template with a one-time use button)

tm
 
tm,

Assuming the commandbutton was off of the control toolbox: At the end of
the Private Sub CommandButton1_Click() code, use a line like:

Worksheets("Sheet1").Shapes("CommandButton1").Delete

HTH,
Bernie
MS Excel MVP
 
tm, if you just want to delete the button use something like this

Private Sub CommandButton1_Click()
Range("A1") = "test"
ActiveSheet.Shapes("CommandButton1").Delete
End Sub

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003
 
On Tue, 21 Dec 2004 11:18:41 -0500, "Paul B"

D'oh!..."Shapes".....ah, well...I'm learning (slowly)

Thanks both o' you.

tm
 

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

Back
Top