DASL查询将列添加到表-LastVerbExecuted

时间:2019-03-21 16:12:05

标签: outlook outlook-vba

是否可以将LastVerbExecuted属性作为DASL查询生成的Outlook表的一部分?我尝试了下面的代码,但该列在表中返回“ Nothing”

 Dim oT As Outlook.Table = eFolder.GetTable(strFilter)
 oT.Sort("[SentOn]", True)
 oT.Columns.RemoveAll()

        With oT.Columns
            .Add("SenderName")
            .Add("urn:schemas:httpmail:textdescription")
            .Add("http://schemas.microsoft.com/mapi/proptag/0x10810003")
        End With

0 个答案:

没有答案