Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 09-10-2020, 12:43 AM
gmayor's Avatar
gmayor gmayor is offline MS Outlook 2016 Notes date written lost Windows 10 MS Outlook 2016 Notes date written lost Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,144
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

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
Reply With Quote
 

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
MS Outlook 2016 Notes date written lost Lost notes formatting in Presenter View c_rlucas PowerPoint 1 03-30-2012 12:41 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 07:14 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft