在 Outlook 2007 中设置电子邮件标志状态 [英] Set Email Flag Status in Outlook 2007

查看:17
本文介绍了在 Outlook 2007 中设置电子邮件标志状态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Outlook 2007 有没有办法在电子邮件对象上设置后续标志?看起来它在带有 .FlagStatus 属性的 Outlook 2003 中受支持,但我在 2007 年找不到它.

Is there a way in Outlook 2007 to set a follow-up flag on an email object? It looks like it was supported in Outlook 2003 with .FlagStatus property, but I can't find it in 2007.

推荐答案

来自 Outlook 更改说明:

From the outlook change notes:

对于后续标志 Microsoft Office Outlook 2003 中引入的后续标志已被任务标志和颜色类别所取代.您不再在邮件视图中看到彩色标志.如果您在早期版本的 Outlook 中标记项目以表明它们很重要或它们属于特定组,则现在应该改用颜色类别.如果您使用标志来指示您要对某个项目采取行动的时间,那么您现在应该使用任务标志.进行此更改是为了增加标志的功能.通过任务标记,您可以在整个任务管理系统中放置一个项目,让您可以在待办事项栏、日历中的每日任务列表和任务视图中查看您的任务.通过对项目进行分类,您可以轻松地扫描您的收件箱以查找已分类的项目,这与您之前扫描您的收件箱以查找标记的项目的方式相同.您还可以在分类邮件搜索文件夹中找到分类项目.

For Follow Up Flags For Follow Up Flags, introduced in Microsoft Office Outlook 2003, are replaced by task flags and color categories. You no longer see colored flags in the Mail view. If you flagged items in the earlier version of Outlook to indicate that they were important or that they belonged to a particular group, you should now use color categories instead. If you used flags to indicate the time at which you were to take action on an item, you should now use task flags. This change is being made to increase the functionality of flags. With task flagging, you can place an item in the overall task management system, allowing you to see your tasks in the To-Do Bar, Daily Task List in Calendar, and in the Tasks view. By categorizing an item, you can easily scan your Inbox for categorized items, the same way that you might previously have scanned your Inbox for flagged items. You can also find categorized items in the Categorized Mail Search Folders.

所以标志的概念发生了变化,这就是 FlagStatus 属性发生变化的原因.根据 this,以下应该有效:

So the concept of the flag changed, which is why the FlagStatus property has changed. According to this, the following should work:

Set SelectedItems = Outlook.ActiveExplorer.Selection
    For Each Item In SelectedItems
        With Item
            .ToDoTaskOrdinal = dtTaskDate
            .TaskDueDate = dtTaskDate
            .TaskStartDate = dtTaskDate
            .FlagStatus = 2
            .FlagRequest = strFlagRequest
            .Categories = strCategories
            .FlagIcon = 6
            .Save
        End With
    Next Item

这篇关于在 Outlook 2007 中设置电子邮件标志状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆