B
bob
What is the best way to force a date field "modified date
to be updated when a record is updated... NOT JUST
VIEWED, and closed... I have been looking at some thing
like>>
Private Sub DateModified_LostFocus()
Dim rst As DAO.Recordset
Dim db As DAO.Database
Dim today As Variant <<<<<<also tried DATE
today = Date
If rst.LastModified = today Then
rst.questions.DateModified = Date
' rst.questions.upDate <<<< just a thought
Else
rst.Close
End If
End Sub
OBVIOUSLY I dont know what i am doing, PLEASE help
THANKS...
to be updated when a record is updated... NOT JUST
VIEWED, and closed... I have been looking at some thing
like>>
Private Sub DateModified_LostFocus()
Dim rst As DAO.Recordset
Dim db As DAO.Database
Dim today As Variant <<<<<<also tried DATE
today = Date
If rst.LastModified = today Then
rst.questions.DateModified = Date
' rst.questions.upDate <<<< just a thought
Else
rst.Close
End If
End Sub
OBVIOUSLY I dont know what i am doing, PLEASE help
THANKS...