Reporter | |
VBOffice Reporter is an easy to use tool for data analysis and reporting in Outlook. A single click, for instance, allows you to see the number of hours planned for meetings the next month. |
In the calendar view, if you accidentally move an appointment and don't realize it, this may have serious consequences. The following macro allows you to cancel the process.
Paste the code to the ThisOutlookSession module, then restart Outlook.
Private WithEvents m_Exp As Outlook.Explorer Private Sub Application_Startup() Set m_Exp = Application.ActiveExplorer End Sub Private Sub m_Exp_BeforeItemPaste(ClipboardContent As Variant, _ ByVal Target As MAPIFolder, Cancel As Boolean _ ) Dim Folder As Outlook.MAPIFolder Dim Msg As String Msg = "You are going to change an appointment. Continue?" Set Folder = m_Exp.CurrentFolder If Folder.DefaultItemType = olAppointmentItem Then Cancel = (MsgBox(Msg, vbYesNoCancel) <> vbYes) End If End Sub
SAM | |
Determine the "identity" of your emails. Set with SAM the sender and the folder folder for sent items with the help of rules. |