Date/Time/Author stamp in Notes field?

  • Thread starter Thread starter Gregory Winters
  • Start date Start date
G

Gregory Winters

Is there an easy way to get Outlook to include a Date/Time w/logged on user
stamp whenever something is typed into the Notes area on a Contact form?
Extra bonus would be some sort of nice formatting, too.

Thanks in advance.
 
To put something at the top:

item.Body = newData + item.Body;

To put something at the bottom:

item.Body = item.Body + newData;

You either append or prepend your data to the existing Body.
 
Back
Top