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

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

问题描述

Outlook 2007中是否可以在电子邮件对象上设置后续标记?看起来Outlook 2003支持.FlagStatus属性,但我在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属性已发生变化的原因.根据

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天全站免登陆