Monthly Archives: September 2009

BadImageFormatException when updating a Dynamics CRM Plug-in

3 comments
Today I was working on a Dynamics CRM 4.0 Plug-in we’ve developed in the past and I needed to update the plug-in on our CRM server. When I loaded the assembly in the Plug-in Registration tool I got the following exception: Unhandled Exception: System.BadImageFormatException: Could not load file or assembly 'Microsoft.Crm.Sdk, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its [...]
Tagged | 3 Comments

Silverlight: Multiple animations on one property through Transforms

0 comments
When you create two or more animations that work on the same property of an object, Silverlight will only use the last of the defined animations. By using transforms you’re able to achieve the same effect anyway. For instance, I’ve got a rectangle that slides up and down by using an animation that works on the Canvas.Top property: <UserControl x:Class="TestAnimationTransform.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" [...]
Tagged | Leave a comment