You could put the option buttons in a frame and then disable/enable the frame, and the option buttons.
Private Sub CheckBox1_Click()
    Frame1.Enabled = CheckBox1.Value
End Sub