Field appears on action of another field

  • Thread starter Thread starter Scotty Clark
  • Start date Start date
S

Scotty Clark

I am doing a visitation database for my church. I have a
form which has a question "Joined Church?" with a Yes/No
check box. There is also a Joined Church date field
related to the question. I do not want the date field to
display or be availabe until the Yes/No box is checked.

How do I do this?
 
[JoinedChurch] is the check box or is there a different
check box control to be checked?
Use the actual CheckBox name.

In the Yes/No check box After Update event:

[DateField].Visible = [CheckBoxName]

Place the same code in the Form's Current event
 
Back
Top