This should be easy but for some reason it will not work. I have a form named MainForm and the selection in the Option Group I want to select is called PickMe.
I have a text box called TxtHere that I set to not be visible.
I wrote this:
Private Sub PickMe_Click()
Me!TxtHere.Visible = True
End Sub
So it should set the text box to visible when I select PickMe but this does not work. Any ideas? I feel stupid for asking something so simple.