Disable optionbutton

C

Cimjet

Hi Everyone
What would be the code to disable option buttons.
I tried this but no success
ActiveSheet.Shapes("OptionButton1").enable = False
TIA
Regards
Cimjet
 
C

Cimjet

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.
thanks
Cimjet
 
R

Rick Rothstein

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)
 
C

Cimjet

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
 

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

Top