M
melbourno
I have this code below:
Private Sub Detailed_Description_AfterUpdate()
Me.Detailed_Description = Now & vbCrLf & Me.Detailed_Description
End Sub
I would like it to timestamp it based as showing below in lines:
2/17/2009 3:36:51 PM, Test1
2/17/2009 3:37:05 PM, Test2
2/17/2009 3:39:26 PM, Test3
2/17/2009 3:49:40 PM, Test4
Could it be possible to do it?
Please help in here
Private Sub Detailed_Description_AfterUpdate()
Me.Detailed_Description = Now & vbCrLf & Me.Detailed_Description
End Sub
I would like it to timestamp it based as showing below in lines:
2/17/2009 3:36:51 PM, Test1
2/17/2009 3:37:05 PM, Test2
2/17/2009 3:39:26 PM, Test3
2/17/2009 3:49:40 PM, Test4
Could it be possible to do it?
Please help in here