I am attempting to have a button become visible when "Option79" the NO option button is selected.
Private Sub Option79_ongotfocus()
If Me.Option79 = true Then
Me.cmdInter.Visible = True
Else
Me.cmdInter.Visible = False
End If
I am getting a run time error 2427
I also attempted to do so using a macro which did not work either.
Private Sub Option79_ongotfocus()
If Me.Option79 = true Then
Me.cmdInter.Visible = True
Else
Me.cmdInter.Visible = False
End If
I am getting a run time error 2427
I also attempted to do so using a macro which did not work either.
Last edited: