0
我嘗試自動添加自動套用格式規則展望2013年展望Autformat規則VBA空濾
的創建規則下......但過濾是空的!
這是我的代碼:
Dim objView As TableView
Dim objRule As AutoFormatRule
If Application.ActiveExplorer.CurrentView.ViewType = olTableView Then
Set objView = Application.ActiveExplorer.CurrentView
Set objRule = objView.AutoFormatRules.Add("myRule")
With objRule
.Filter = """urn:schemas:httpmail:fromname"" LIKE 'gmail.com%'"
With .Font
.Name = "Courier New"
.Size = "8"
.Bold = True
.Color = olColorBlue
End With
End With
objView.Save
objView.Apply
End If
謝謝您重新申請!沒有更多出現,標準仍然是空的......! – Vincent
Mkay ...對不起沒有幫助你...我看不到這可能來自哪裏... – R3uK
這是一個已知問題,outlook不保存AutoFormatRule.Filter屬性(當從代碼使用它時, UI工作正常)。 https://social.msdn.microsoft.com/Forums/en-US/3b4a0cf8-dba9-417a-94c3-7be4340a5961/outlook-2010-autoformatrulefilter-property-not-saving?forum=outlookdev – user1016945