View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
mudraker[_343_] mudraker[_343_] is offline
external usenet poster
 
Posts: 1
Default Disable Command Button


Raj

2 ways

Right click on button select properties Select Enable and change to
flase


From within a macro

Private Sub CommandButton1_Click()
CommandButton2.Enabled = False
Your Code Here
End Sub


--
mudraker
------------------------------------------------------------------------
mudraker's Profile: http://www.excelforum.com/member.php...fo&userid=2473
View this thread: http://www.excelforum.com/showthread...hreadid=520920