Outlook 2016 for Mac spellcheck default language

The spellcheck in Outlook 2016 for Mac was driving me nuts for some time now. Most e-mails I write are in Dutch and the spellcheck defaults to English (UK). My daughter concluded “a lot of squiggly red lines” on my computer. This was the max. Outlook behave!

Here is how to change the default language:

  • Create a new message
  • Click Options > Language in the Ribbon
  • Select the preferred Language and click Default…
  • Click OK and close the new message

default_spellcheck_language_outlook2016_mac

Finally spellcheck in my own language. I’m a happy Office for Mac user again.

Posted in Tooling | Tagged , | Leave a comment

Flow parasites on ifttt

My blog posts are automatically published to yammer. When yammer was independent this worked like a charm. Then Microsoft bought yammer and the ifttt channel stopped working.

With the Office365 channel and the e-mail to yammer it worked again. Only for Microsoft to introduce an approve step. This means:

  1. wait for approval request in outlook,
  2. open login page to office 365,
  3. fill e-mail and wait for redirect to company login page,
  4. fill e-mail (again) and password,
  5. See the yammer post.

Now with Flow this would be automatic again. Let’s try this with this post.


as expected Flow can publish to yammer with more options and less hurdles … embrace and extend, not really.

Posted in Tooling | Leave a comment

Scrum Master Skills

We’re working on our project for some months now. Time to freshen up on scrum. For this we use the Scrum Master Skills course on pluralsight.

Once each sprint we sit down as a team for an hour. We play and pause the video and discuss how this applies to us. Some tips can be applied right away and others go on the backlog.

rawpixel-com-250087

Image courtesy of rawpixel / unsplash.com

Every project is different and every team is different. Even after 15 sprints we are finetuning. Using the experience of others helps us to be a better scrum team.

Posted in Development | Tagged , , | Leave a comment

Update statistics from stored procedure (needs alter table permission)

Today instead of the beautiful information our reports displayed this ugly error

  • An error has occurred during report processing. (rsProcessingAborted)
    • Query execution failed for dataset ‘StoredProcedure’. (rsErrorExecutingCommand)
      • For more information about this error navigate to the report server on the local server machine, or enable remote errors

If we had access to the report server machine this was easy to troubleshoot. But we don’t have access to the report server. We needed another approach.

Image courtesy of jesadaphorn / FreeDigitalPhotos.net
Image courtesy of jesadaphorn / FreeDigitalPhotos.net

Looking through the changes from last night we noticed a small performance enhancement. In a stored procedure that prepares the data for the reports we added the following line:

UPDATE STATISTICS [dbo].[Fact]

In the Microsoft documentation it says you’ll need alter table permission to use update statistics. So we added another grant for the reporting service account.

GRANT EXECUTE ON [dbo].[proc_prepare4reporting] TO [SSRS]
GRANT ALTER ON [dbo].[Fact] TO [SSRS]

After the deployment the reports showed the beautiful information again.

Posted in Development | Tagged , , , , , | Leave a comment

TypeLoadException

Introducing a new member to the team is always a good thing. This brings up problems that would stay under the radar otherwise. Our new tester experienced an application crash that we’ve never seen before.

Using the remote debugger we discovered the actual exception:

[TypeLoadException: Could not load type ‘System.Security.Claims.ClaimsIdentity’ from assembly ‘mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089’.]

Turned out the newly installed machine was still on .NET Framework 4.0 and we target the 4.5 Framework in our build. Other testers have Visual Studio 2015 installed to use the Test Manager feature. That installs the 4.5 Framework on their machines. The new tester hadn’t yet installed anything.

Image courtesy of toonsteb / FreeDigitalPhotos.net
Image courtesy of toonsteb / FreeDigitalPhotos.net

Our users will be on the .NET 4.0 Framework. So we changed the framework target to 4.0 in the project and the new bug was resolved and fixed. 😉

Posted in Development | Tagged , , | Leave a comment