View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Andreww Andreww is offline
external usenet poster
 
Posts: 25
Default Enabling Option Buttons - Control

Hi - I have two option buttons (controls) on a sheet - no frame round
them.

In a certain scenario I want the 2nd optionbutton to be disabled so
the user can not click in it.

This is my code:

Sub test2()

Sheets("Detail").Shapes("OptionButton2").Select
If Selection.Enabled = True Then
Selection.Enabled = False
Else
Selection.Enabled = True
End If

End Sub

When the design icon in the control toolbox is enabled the code works
fine. Otherwise, when in normal non design mode I get "Object doesn't
support this property or method".

(Reason I have no frame is that the 2 optionbuttons dissapear behind
it)

Any ideas?

Thanks

Andrew