Greetings to all,
How can I change the color for example to red for the last entries in a text box field. Note that I'm using the following code (After Update) to stamp the date, time, and the person who has done the entry.
Dim s As String
Dim ss As String
s = Status.Value & "."
ss = s & " " & crlf$ & "Updated by: " & Assigned.Value & crlf$ & ". on " & Now
End If
End Sub
I need only the newer entries or update in the text field to be in red and the upper previous entries in the same filed change back to black whenenver newer updates occurs.
I appreciate your help as always.

How can I change the color for example to red for the last entries in a text box field. Note that I'm using the following code (After Update) to stamp the date, time, and the person who has done the entry.
Dim s As String
Dim ss As String
s = Status.Value & "."
ss = s & " " & crlf$ & "Updated by: " & Assigned.Value & crlf$ & ". on " & Now
End If
End Sub
I need only the newer entries or update in the text field to be in red and the upper previous entries in the same filed change back to black whenenver newer updates occurs.
I appreciate your help as always.