![]() |
|
#4
|
||||
|
||||
|
Hmmm. I see the problem, but it can be addressed with a little vba jiggery pokery. Try the following Outlook macro which creates a temporary note with the added creation date from the original added in place of the modified date.
Code:
Sub PrintNote()
'Graham Mayor - https://www.gmayor.com - Last updated - 10 Sep 2020
Dim olNote As Outlook.NoteItem
Dim olTempNote As Outlook.NoteItem
Dim dDate As Date
Dim strDate As String
On Error Resume Next
Select Case Outlook.Application.ActiveWindow.Class
Case olInspector
Set olNote = ActiveInspector.currentItem
Case olExplorer
Set olNote = Application.ActiveExplorer.Selection.Item(1)
End Select
dDate = Split(olNote.CreationTime, Chr(32))(0)
strDate = "Created:" & vbTab & Format(CStr(dDate), "ddd ") & olNote.CreationTime
Set olTempNote = CreateItem(olNoteItem)
With olTempNote
.Body = "Created:" & vbTab & Format(CStr(dDate), "ddd ") & _
olNote.CreationTime & vbCr & vbCr & _
olNote.Body
.PrintOut
.Delete
End With
lbl_Exit:
Set olNote = Nothing
Set olTempNote = Nothing
Exit Sub
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
| Tags |
| notes, outlook 2016, written date of creation |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Panicking: lost (all?) my contact notes | WimYogya | Outlook | 1 | 07-09-2018 05:49 PM |
| Outlook 2016 / Contacts / Notes | Ettoip | Outlook | 0 | 10-18-2017 08:40 AM |
| Outlook 2016 "Lost Contact" | bianson | Outlook | 0 | 03-09-2017 09:58 AM |
| Lost notes after reset - can retrieve? | manueltrucco | OneNote | 1 | 11-27-2016 11:42 AM |
Lost notes formatting in Presenter View
|
c_rlucas | PowerPoint | 1 | 03-30-2012 12:41 AM |