I have a Radial button that I am trying to set up so wneh selected another field pops up. With the following it works if I select twice as the other field alwats shows upon opening the form:
I am trying to set the default value of NIE without going into the Design view of the Table or Form.
Private Sub NIE_Default_Click()
If Me![NIE_Default] = True Then
Me![NIE].Visible = True
Else
Me![NIE].Visible = False
End If
End Sub
I would prefer to use a button though. I do think I can relate this same code to a button and have it work.
Where is it going wrong?
Thanks
T