use of category in outlook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top