Macro to replace the Go To Date feature of Outlook's Calendar. From an open appointment, run the macro. The calendar opens to the date of the appointment.
Paste Formatted Text Using VBA
Use Microsoft Word’s ‘use source formatting’ paste command to paste formatted text into an Outlook item body.
Save Outlook Email as a PDF
How to use VBA to save selected Outlook messages as PDF files.
Change Category when Task is marked Completed
Use the ItemChange event to run a macro when the value in a field is changed in Outlook. In this example, when a task is marked complete, the Category is updated.
Always open Contacts to a specific Contacts folder
Use a VBA macro to always open a specific folder when you switch to a module.
Use a Default Subject for New Messages
How to use a VBA macro to insert a predefined text into the subject field of a new messages. Method works with any Outlook item type.
Monitor secondary mailbox folder for new messages
Use a VBA macro to monitor a folder in a secondary mailbox for new messages.
Mail merge to members of a contact group
How to use VBA to mail merge (send individual messages) to members of a Contact Group.
Read MAPI properties not exposed in Outlook's Object Model
How to read MAPI properties that are not exposed in the VBA Object model using the Property Accessor object.
Paste clipboard contents using VBA
Although Outlook VBA doesn't include a paste from clipboard function directly, you can use the MSForms dataobject to transfer the clipboard contents to a string which is then called from VBA.