Get a "New Note" icon onto the QAT

Status
Not open for further replies.

WPFreeman

Member
Outlook version
Outlook 2016 64 bit
Email Account
Office 365 Exchange
I'm shooting for a one-click icon for a New Note (not OneNote) ... one that stays active no matter the view being used, or the folder I have active ... like the way New Appointment and New Contact work in the QAT.

I tried the New Items list box, but it has everything in it except New Note. The only way to get where I want to go from there is to drill down through New Items > More Items > Choose Form > Note, which is contrary to the concept of "Quick Access", IMO anyway.

I've dug through the whole All Commands list in QAT customization and find nothing else that works. Am I missing something?

TIA.
Ward
 
It looks like you have two choices = ctrl+shift+n or a macro which can be added as as button to the qat

Code:
Public Sub New_Note()
Dim olNS As Outlook.NameSpace
Dim oNote As Outlook.NoteItem

Set olNS = Application.GetNamespace("MAPI")
Set oNote = Application.CreateItem(olNoteItem)

'add a date or date/time stamp
oNote.Body = Format(Now, "mm/dd/yyyy h:nn AM/PM")
' oNote.Body = Date

oNote.Display

     
Set oNote = Nothing
Set olNS = Nothing

End Sub
 
Last edited:
ARRGGGHH ... I hate it when I miss the obvious ... Ctrl+Shift+N will do just fine! Thanks so much, and thank you for dozens of times in the past 15+ years when SlipStick has solved my problem.
 
:) BTDT myself.
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
Witzker Add a text line at the end of the note field in all selected Contacts Outlook VBA and Custom Forms 7
J images on note field display fraction of size Using Outlook 5
D IMP.Note Versus REPORt.IPM.NOte Outlook VBA and Custom Forms 3
M One Note as a mail folder Using Outlook 6
mrje1 Note Field (Any way to do incell editing) Using Outlook 7
J Outlook 2013 Want to file a note after filtering with search current mailbox Using Outlook 3
U No scrolling in note field of contact record Using Outlook 1
D Updating Registry to force new task and note items to save in a particular folder Using Outlook 1
L Contact Photo For Calendar Note Field Using Outlook 4
L Contact Photo For Calendar Note Field Using Outlook 0
L How to acess the note field in contact item Outlook VBA and Custom Forms 19
N Adding a note to a e-mail which has been marked as follow up Using Outlook 1
L Outlook 2007 Code for Note Fields of Appointment Using Outlook 102
L Outlook 2007 Contact Form - Note Fields Using Outlook 25
G Problem with reminders and the contact note field BCM (Business Contact Manager) 5
W Calendar Note Font Reverting Using Outlook 11
M Unable to search Note section in Contacts in icloud Using Outlook 7
L Source Name for Appointment Note/Message field Using Outlook 0
J add note to body or notes Outlook VBA and Custom Forms 5
0 Add a date stamp to the note field of a custom form Outlook VBA and Custom Forms 1
S Note: The GMT offset above does not reflect daylight saving time adjustments Using Outlook 12
M Outlook2007 and VSTO, handle the Click on the Save Button in the IPM.Note dialog HOWTO? Outlook VBA and Custom Forms 4
A Note field on general tab BCM (Business Contact Manager) 5
X Custom icon (not from Office 365) for a macro in Outlook Outlook VBA and Custom Forms 1
S Paperclip icon shows without attachment in email under Sent folder Using Outlook 0
J Text icon in Quick Access toolbar ? Using Outlook 2
T Outlook 2016 remove envelope icon for certain folders Using Outlook 5
M New icon? Using Outlook 3
Commodore Attachment icon when there is no attachment Using Outlook 3
J Control Panel Mail (settings) icon missing Using Outlook 2
J Problem with Outlook 2016 new mail tray icon alert (envelope in the systems tray) Using Outlook.com accounts in Outlook 0
G Outlook 2016: reply icon not showing when replied from mobile Using Outlook 3
E What does mean this icon at the picture attached? Using Outlook 2
W "Post" icon on some contacts Using Outlook 1
P Delete Icon Using Outlook 2
Witzker Change icon for custom views Using Outlook 1
D Email Icon Column Using Outlook 2
M Recurring icon for custom form task item Outlook VBA and Custom Forms 6
A Change Outlook Taskbar Icon Using Outlook 0
P IM and Phone icon is Grayed out in Outlook 2013 - Using Lync 2013 Using Outlook 4
wisedave Missing icon that show message was forwarded, etc Using Outlook 1
F Custom contact form icon issue Using Outlook 1
M Floating Delete Icon in mail list Using Outlook 1
V Reply Arrow Icon appears when both Replying or Forwarding Using Outlook 3
T Add 'Move to folder' icon to custom form Using Outlook 1
J phone icon greyed out in outlook 2013 Using Outlook 1
H how to change the Folder icon in Contact Using Outlook 7
P Outlook closes down after clicking on the quick print icon. Using Outlook 3
M Remove sharing icon from outlook contacts Using Outlook 6
A No profiles created problem in outlook after clicking outlook icon Using Outlook 0

Similar threads

Back
Top