I have a continuous form and I wish to hide or show a text box in each record depending on whether a check box in the same record is ticked.
I have tried the procedure below but this will either hide or show the text box for all records the same, depending on whether the current record is checked or not.
Private Sub Form_Current()
If Me!chkEnd.Value = -1 Then
Me![cboItemEnd].Visible = True
Else
Me!cboItemEnd.Visible = False
End If
End Sub
Is there a way I can hide/show the text box selectively for each record.