hi folks ..... i have a problem...... got a field that when you click a checkbox it updates the date in another field.... that works no problem.
used:
If Me.PrintSR1 = True Then
Me.SR_1 = Date
End If
but i have created a select all buttom that works great with this code:
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
the problem is when you click select all it will not auto input the date
any ideas!!!
used:
If Me.PrintSR1 = True Then
Me.SR_1 = Date
End If
but i have created a select all buttom that works great with this code:
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
the problem is when you click select all it will not auto input the date
any ideas!!!