No, getting it when I exit the fields to save the data.
The function is:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Me.txtUpdated = fOSUserName
Me.txtDate_Updated = Now()
End Sub
Without Me.txtDate_Updated = Now() there is no problem
I have it setup in the after update code.
date_updated is setup as the field on my form and is hidden - It is tied to the correct field I am updating on the table.
Currently I have a field setup on my form and hidden. I have inputted the code me.txtDate_updated=now() to assign the date that the field was updated.
However, now whenever I access the form I receive a Compile error stating "Method or data member not found"
Anyone have an idea as to what...
Okay...got the before update item resolve.
In terms of the date_updated - I have been getting a Compile error stating "Method or data member not found"
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...