From: Robert Crandal on 16 Jan 2010 02:52 I added one pushbutton on top of my Sheet1. I then right-clicked that button and selected "Copy. Next, I pasted multiple instances of that same button on Sheet1 up to Sheet12. So, basically, I have many instances of the same button scattered through sheets 1 to 12. What is a good way to disable (and enable) all these scattered buttons??? Do I need to iterate through all buttons and disable them one at a time?? How do I do this? thank you!
From: joel on 16 Jan 2010 07:53 For Each sht In Sheets For Each obj In sht.OLEObjects ObjectType = TypeName(obj.Object) If ObjectType = "CommandButton" Then obj.Enabled = False End If Next obj Next sht -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/showthread.php?t=170670 [url="http://www.thecodecage.com"]Microsoft Office Help[/url]
|
Pages: 1 Prev: Frastrating-doesn't give all the data Next: MRP Excel Spread sheet |