Hello
I have a form where there is a check box and it clicked new text is visible. The problem is when I add a new record that does not have the check box checked and then I filter through the rest of the records that do have it checked the text is no longer visible. below is the code that I have. Thanks for the help.
I have a form where there is a check box and it clicked new text is visible. The problem is when I add a new record that does not have the check box checked and then I filter through the rest of the records that do have it checked the text is no longer visible. below is the code that I have. Thanks for the help.
Code:
If Me.Check117 Then Me.duration.Visible = True Me.txthrs.Visible = True Me.eventdateend.Enabled = False eventdateend = eventdatestart Else Me.duration.Visible = False Me.txthrs.Visible = False Me.eventdateend.Enabled = True End If
Comment