Rick said:
When I respond with a "Yes" in a Y/N field, I want to be able to see
an additional block of info appear. With a no, nothing would happen.
How do I do this?
I'm not sure whether your "block of info" is a single control, such as a
text box, or a set of controls. Either way, essentially what you would
do is use the Y/N field's AfterUpdate event (and probably the form's
Current event as well) to set the Visible property of the control(s) you
want to show or hide. In a simple case, the event procedures could look
like this:
'----- start of example code -----
Private Sub chkShowHide_AfterUpdate()
Me!txtSomeInfo.Visible = Me.chkShowHide.Value
End Sub
Private Sub Form_Current()
Me!txtSomeInfo.Visible = Me.chkShowHide.Value
End Sub
'----- end of example code -----