A
Andy Boruta
I get lots of meeting replies, so I have a VB routine that scans for postive
meeting replies with no additional notes added, and I move them to a folder
where I can bulk delete them.
My problem is that the response tracking is not updated. It will update if
I open the meeting response manually, but not with the code below. Is there
a way I can get the Response Tracking updated?
If Item.Class = olMeetingResponsePositive Then
If Item.Body = "" Then
Item.UnRead = False
Item.Move myDestFolder ' the bulk delete folder
End If
End If
meeting replies with no additional notes added, and I move them to a folder
where I can bulk delete them.
My problem is that the response tracking is not updated. It will update if
I open the meeting response manually, but not with the code below. Is there
a way I can get the Response Tracking updated?
If Item.Class = olMeetingResponsePositive Then
If Item.Body = "" Then
Item.UnRead = False
Item.Move myDestFolder ' the bulk delete folder
End If
End If