B
blake7
Hi All, I have a form with an option group on it, it has 4 values which it is
storing in a table, I would like to make a text box disappear when one of the
radio buttons is selected, I have tried the code below in the After_update of
the form but it does not work, what is wrong? Thanks.
If Me.Option66 = True Then
Me.Text59.Visible = False
Else
Me.Text59.Visible = True
End If
storing in a table, I would like to make a text box disappear when one of the
radio buttons is selected, I have tried the code below in the After_update of
the form but it does not work, what is wrong? Thanks.
If Me.Option66 = True Then
Me.Text59.Visible = False
Else
Me.Text59.Visible = True
End If