View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
N.F[_2_] N.F[_2_] is offline
external usenet poster
 
Posts: 65
Default Option Button?? Help

Hello, I posted this same question in another discussion group, but I
actually meant to post it on this one.

My question is: Why doesnt this work. I know it works for a check box but I
dont know how to make it to do the same function using the option buttons.

Private Sub OptionButton1_Click()
Me.TextBox1.Enabled = Not Me.OptionButton1.Value
Me.TextBox2.Enabled = Not Me.OptionButton1.Value
End Sub