F
Frank Situmorang
Hello,
In one form I have the field to show if there is an update, the date will
show the last update, therefore I made this sub:
Private Sub Form_BeforeUpdate(Cancel As Integer)
' Update DateUpdated field
Me!DateUpdated = Date
End Sub
I need also to make the like VBA in the other form which is based on other
query. My question is can I make in other form like this again?
Private Sub Form_BeforeUpdate(Cancel As Integer)
' Update DateUpdated field
Me!DateUpdated = Date
End Sub
Thanks for any idea.
Frank
In one form I have the field to show if there is an update, the date will
show the last update, therefore I made this sub:
Private Sub Form_BeforeUpdate(Cancel As Integer)
' Update DateUpdated field
Me!DateUpdated = Date
End Sub
I need also to make the like VBA in the other form which is based on other
query. My question is can I make in other form like this again?
Private Sub Form_BeforeUpdate(Cancel As Integer)
' Update DateUpdated field
Me!DateUpdated = Date
End Sub
Thanks for any idea.
Frank