I have a bound form in Single View. I use buttons to navigate backwards and forwards through the records in a table.
Private Sub MoveNext_Click()
On Error Resume Next
DoCmd.GoToRecord , , acNext
End Sub
I have some fields that I want to make visible when a check box is ticked, but remain...