是否可以将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