I have a form where I am currently showing the last updated user with the following code:
Private Sub Form_Current()
Me.Updated = fOSUserName
End Sub
I would like to add another field Date_Updated that shows the day that the record was updated. So far me.txtDate_Updated = date() has given me all kinds of errors. Is there another recommendation for displaying this value?
Also, unrelated, is there anyway I can suppress the first record in the dataset so that the last updated procedures are not constantly updating the very first record even when nothing has been changed?
Private Sub Form_Current()
Me.Updated = fOSUserName
End Sub
I would like to add another field Date_Updated that shows the day that the record was updated. So far me.txtDate_Updated = date() has given me all kinds of errors. Is there another recommendation for displaying this value?
Also, unrelated, is there anyway I can suppress the first record in the dataset so that the last updated procedures are not constantly updating the very first record even when nothing has been changed?