I am a fairly new user in access. I am creating a form with several option groups using check boxes. Basically the option box consists of a question and yes and no check boxes. The functionality I desire is when a user selects the "no" check box, a text box will appear for the user to type in more information. Currently I am using the event procedure got focus in the check box properties only. This is what my code looks like:
Private Sub Browser_error_No_GotFocus()
If Me.Browser_error_No = True Then
Me.OLP_Access_Err_Desc1 = True
End If
End Sub
where OLP_Access_Err_Desc1 is the text box I want to open.
Nothing happens when I select the no check box. Any suggestions
Private Sub Browser_error_No_GotFocus()
If Me.Browser_error_No = True Then
Me.OLP_Access_Err_Desc1 = True
End If
End Sub
where OLP_Access_Err_Desc1 is the text box I want to open.
Nothing happens when I select the no check box. Any suggestions