use of category in outlook

G

GauRav

Is it possible to define a drop down menu which has my defined set of
categories. If so, I would like to select message or set of messages and
would just choose the category.

Drop down menu was just something I could think of but any other way, which
gets the desired results is acceptable.

Thanks.
GauRav
 
K

KePaHa

I created a new menu on one of the OL toolbars, and added one macro for each
category as an item on the menu. Each macro looks like this (this one adds
the category "Phones" to the selected item:

Sub CatPhones()
Dim objItem As Object
Set objItem = ActiveExplorer.Selection.Item(1)
Dim CurrCats

CurrCats = objItem.Categories
objItem.Categories = CurrCats & ", " & "Phones"
objItem.Save
End Sub
 
Top