Alexandersels
New member
- Local time
- Tomorrow, 00:17
- Joined
- Sep 9, 2003
- Messages
- 8
In a database I want to know the when the last change of a record has been made. I know one way to do it, but is not realy efficient:
I made the folowing sub
Private Sub addtime()
Date_of_Record.Value = Now()
End Sub
I call this sub if one of the 200+
inputboxes change:
Private Sub inputbox_change
call addtime
End Sub
Is there a more efficient way to save the date the record is last modified???
thanks in advance
I made the folowing sub
Private Sub addtime()
Date_of_Record.Value = Now()
End Sub
I call this sub if one of the 200+
Private Sub inputbox_change
call addtime
End Sub
Is there a more efficient way to save the date the record is last modified???
thanks in advance