Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Rick
Sorry about that, I should have known better. You also forgot to mention where you got the OptionButtons from.<< It was an ActiveX control. Thank you everything is working fine. Regards Cimjet "Rick Rothstein" wrote in message ... Also I forgot to mention, I would like to disable about 24 Option button, it would be better if I could disable then all with one command if possible. You also forgot to mention where you got the OptionButtons from... the Forms toolbar or the (ActiveX) Control Toolbox toolbar. Here is code for both (the macro name should tell you which is which)... Sub DisableFormsOptionButtons() Worksheets("Sheet 1").OptionButtons.Enabled = False End Sub Sub DisableActiveXOptionButtons() Dim OptBtn As OLEObject For Each OptBtn In Worksheets("Sheet 1").OLEObjects OptBtn.Object.Enabled = False Next End Sub Rick Rothstein (MVP - Excel) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Disable Optionbutton Control | Excel Programming | |||
Optionbutton help | Excel Programming | |||
OptionButton value | Excel Programming | |||
OptionButton | Excel Programming | |||
Better Way to Use OptionButton | Excel Programming |