up vote 1 down vote favorite
share [g+] share [fb]

Okay, i've got an Outlook 2003 VBA macro that clears a mail item's categories, and this is assigned to a button. However, i've got a conditional formatting rule that's already been applied, so when (in the inbox list view) i run the macro, the categories are cleared but the conditional formatting on that item remains until i select a different item.

How would i, in the macro, force the conditional formatting rules to be cleared (or reapplied)? I.e. unformat that message.

For reference, the code looks like this (and if there's a better approach, please explain):

Sub ClearCategories()
Dim msg As Outlook.MailItem
Select Case TypeName(Outlook.Application.ActiveWindow)
  Case "Explorer"
    Set msg = Outlook.Application.ActiveExplorer.Selection.Item(1)
  Case "Inspector"
    Set msg = Outlook.Application.ActiveInspector.CurrentItem
End Select
msg.Categories = ""
Set msg = Nothing
End Sub
link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Figured it out. Need to save and close the item after the category change.

msg.Close(olSave)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.