
Me.[SR 1] = Now()
in the select all coding of the select all button
this part works great:
Private Sub PrintSR2_AfterUpdate()
If Me.[PrintSR2] = True Then
Me.[SR_2] = Date
End If
when you click the print checkbox itself but not a chance with the select all button
Private Sub tglYesNo_Click()
Dim rs As DAO.Recordset
Set rs = Forms![Search Results]![test subform2].Form.RecordsetClone
Do While Not rs.EOF
rs.Edit
rs!PrintSR1 = True
rs.Update
rs.MoveNext
Loop
Set rs = Nothing
End Sub
PLEASE HELP!!!!!