V Vince Jan 22, 2004 #1 That's it. I would be eternally grateful if someone could post a simple macro. Thankyou. Vince.
K Ken Slovak - [MVP - Outlook] Jan 22, 2004 #2 Code in the Application_ItemSend event in the ThisOutlookSession class module: Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) On Error Resume Next If Item.ReminderSet Then Item.ReminderSet = False Item.Save End If End Sub
Code in the Application_ItemSend event in the ThisOutlookSession class module: Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) On Error Resume Next If Item.ReminderSet Then Item.ReminderSet = False Item.Save End If End Sub