Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Office 2013 - 365 blues
Message
 
To
All
General information
Forum:
Microsoft Office
Category:
Outlook
Title:
Office 2013 - 365 blues
Environment versions
Microsoft Office:
Office 2013
Miscellaneous
Thread ID:
01599541
Message ID:
01599541
Views:
45
I have this routine that works in outlook 2010 but not in outlook 2013 (365).
Public Sub readTextFile(oFolder As eFolder)
    If oFolder = NotSupported Then Exit Sub
    If oFolder = Inbox Then
        ActiveExplorer.CurrentView = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox).Views("MgInbox")
    Else
        ActiveExplorer.CurrentView = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderSentMail).Views("MgSentMail")
    End If
    Dim oTV As Outlook.TableView
    Set oTV = ActiveExplorer.CurrentView
    <b> oTV.AutoFormatRules.item(eColor.Green).Filter = cGetFilter(oFolder, Green) </b>
    oTV.AutoFormatRules.item(eColor.Red).Filter = cGetFilter(oFolder, Red)
    oTV.AutoFormatRules.item(eColor.Brown).Filter = cGetFilter(oFolder, Brown)
    oTV.AutoFormatRules.item(eColor.Blue).Filter = cGetFilter(oFolder, Blue)
    oTV.Apply
End Sub
At
oTV.AutoFormatRules.item(eColor.Green).Filter = cGetFilter(oFolder, Green)
It tells me that I have insufficient rights on the folder. (error 86204005, You don't have appropriate permission to perform this operation)

I'm puzzled.

If things have the tendency to go your way, do not worry. It won't last. Jules Renard.
Reply
Map
View

Click here to load this message in the networking platform