Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a spreadsheet with what appear to be five option buttons on one
of the sheets. However, when I try to select them for editing format control, etc. (not just click on them -- that works), I cannot do it. Normally one can right-click on the button and get the menu with Format Control, Assign Macro, etc., but not in this case. And if I select the Select Objects arrow from the Drawing toolbar and try to select these buttons, nothing. Also, when I click on one of them, a button appears that when clicked obviously runs a macro (it unhides some sheets), but this button too appears to be inaccessible to editing, etc. Finally, I cannot see any of the macros assigned to these objects -- the one that generates the button when one of the option buttons is clicked, nor the one that unhides the sheets when the generated button is clicked. Any help is greatly appreciated. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ah, never mind, found the code in the sheet where the buttons reside
(not in a module). Should have searched this group first, a search on "hidden macros" did the trick. Thanks anyway. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is the worksheet protected? If so, this might answer the unable to select
property. also you can try running code like Sub AA() for each obj in Activesheet.OleObjects debug.print typename(obj.Object), obj.name Next End Sub If you don't get anything from that, then try Sub AB() for shp in Activesheet.Shapes debug.print shp.name next End sub It might give you some insights into what you have. I have found that activex controls added with code can often exhibit this type of behavior. (although they can usually be selected) -- Regards, Tom Ogilvy "Steve" wrote in message oups.com... I have a spreadsheet with what appear to be five option buttons on one of the sheets. However, when I try to select them for editing format control, etc. (not just click on them -- that works), I cannot do it. Normally one can right-click on the button and get the menu with Format Control, Assign Macro, etc., but not in this case. And if I select the Select Objects arrow from the Drawing toolbar and try to select these buttons, nothing. Also, when I click on one of them, a button appears that when clicked obviously runs a macro (it unhides some sheets), but this button too appears to be inaccessible to editing, etc. Finally, I cannot see any of the macros assigned to these objects -- the one that generates the button when one of the option buttons is clicked, nor the one that unhides the sheets when the generated button is clicked. Any help is greatly appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using Multiple sets of Option Buttons (Form Control) In Excell | Excel Worksheet Functions | |||
Worksheets and Control Option Buttons | Excel Worksheet Functions | |||
How do I create a form in a worksheet with control option buttons. | New Users to Excel | |||
Selective control of Option Buttons | Excel Programming | |||
Control Box Option Buttons | Excel Programming |