R
rjw24
I have a form - frmEvents - and I want to know when the last time each record
was modified and by whom. I have created two fields LastModified and
ModifiedBy.
I have managed to write code to populate these on the AfterUpdate event on
the form. My code reads:
Private Sub Form_AfterUpdate()
[LastModified] = Now()
[ModifiedBy] = CurrentUser()
End Sub
This works fine until I try to nagivate to the next record and it says that
I cannot move to the specific record.
Can you please help?
was modified and by whom. I have created two fields LastModified and
ModifiedBy.
I have managed to write code to populate these on the AfterUpdate event on
the form. My code reads:
Private Sub Form_AfterUpdate()
[LastModified] = Now()
[ModifiedBy] = CurrentUser()
End Sub
This works fine until I try to nagivate to the next record and it says that
I cannot move to the specific record.
Can you please help?