HI, I have a multiple item form (Event_log) as a subform, listing all activity from the client on the main form. there are hundreds of entries on the Event_log. I am trying to turn the text of the 'event' field blue if the event filed contains the word Invoice. (to find them faster)
I have the code :-
I think its sound, but where do I put it?
Thanks in advance.
I have the code :-
Code:
If Me.Event_Details Like "*INVOICE*" Then
Me.Event_Details.ForeColor = vbBlue
Else
Me.Event_Details.ForeColor = vbBlack
End If
I think its sound, but where do I put it?
Thanks in advance.