Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Outlook and VBA (http://www.outlookbanter.com/outlook-vba/)
-   -   Program button for sensitivity (http://www.outlookbanter.com/outlook-vba/9142-program-button-sensitivity.html)

[email protected] March 22nd 06 07:06 PM

Program button for sensitivity
 
We use a PGP gateway and have need to tag emails as "Sensitivity:
Confidential" on a regular basis. This is annoying in the default
manner.

We created a macro to open a new message that is already tagged, but I
need more. I need to be able to change messages on reply to
confidential as well.

Really what I need is an option like the "high priority" icon available
in all possible situations. Is there a way to do this easily, or an add
on that could do it? I do not have a VBA or Outlook expert on staff to
turn to. TIA


Michael Bauer March 23rd 06 06:36 AM

Program button for sensitivity
 
Am 22 Mar 2006 10:06:11 -0800 schrieb :

The code could be like this:

Public Sub TurnIntoConfidential()
With Application.ActiveInspector
If TypeOf .CurrentItem Is Outlook.MailItem then
.CurrentItem.Sensitivity=olConfidential
Endif
End With
End Sub

Just open a message window, right click on the toolbar, select Macros from
the second tab and drag the listed name onto the toolbar.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.vbOffice.net --


We use a PGP gateway and have need to tag emails as "Sensitivity:
Confidential" on a regular basis. This is annoying in the default
manner.

We created a macro to open a new message that is already tagged, but I
need more. I need to be able to change messages on reply to
confidential as well.

Really what I need is an option like the "high priority" icon available
in all possible situations. Is there a way to do this easily, or an add
on that could do it? I do not have a VBA or Outlook expert on staff to
turn to. TIA



All times are GMT +1. The time now is 08:45 PM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com