Archives

Currently Reading

Interesting TimesSoul MusicMen at ArmsLords and LadiesWitches AbroadReaper Man

More of Sytone's books »
Book recommendations, book reviews, quotes, book clubs, book trivia, book lists

Setting Outlook to use ISO values for week number.

Tweet

If you want to set outlook to follow the ISO week you need to make the following changes:

Outlook 2007 and previous

Tools-> Options…-> button Calendar Options…

Outlook 2010

File-> section Options-> section Calendar

 

Set the following Options:

First day of week: Monday

First week of year: First 4-day week

Getting a MailItem from a Ribbon Event

Tweet

You may find this code block handy:

/// /// Gets the mail item selected in the explorer view if one is selected or instance if that is the view active. /// /// The instance containing the event data. /// A Outlook.MailItem for the mail being viewed. private Outlook.MailItem GetMailItem(RibbonControlEventArgs e) { // Check to [...]