| | Awarded by Microsoft since 2005: |  |
| | VBOffice Info | | Visitors | 1388657 | | Impressions | 5086119 |
| |
|
| |
| Author: Michael Bauer | Homepage | | Date: 24.04.2007 | Accessed: 18627 | | | | Description
This macro prompts you if you try to send an email without assigned categories. You can then cancel the process. |
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
On Error Resume Next
Dim Msg$
If Len(Item.Categories) = 0 Then
Msg = "Möchten Sie dem Element noch Kategorien hinzufügen?"
If MsgBox(Msg, vbYesNo Or vbQuestion) = vbYes Then
Cancel = True
End If
End If
End Sub
|
| | |
| | |  | ReplyAll alerts you before unintentionally replying all, or if you are a confidential BCC recipient of the ... [more] |
| | |  | Access the master category list in the blink of an eye, share your categories in a network, get a reminder service, and ... [more] |
| | |  | SAM automatically sets the sender, signature, and folder for sent items, for instance based on the recipient ... [more] |
| | |  | OLKeeper reliably prevents users from closing their Outlook window and thus possibly missing reminders or ... [more] |
| |
|