Author: Ferry Meidianto

  • Working with Image.Source on Silverlight 3

    Below are some options to work with Image.Source 1. Embedded in the .xap file as Content Note that the Build Action is “Content” XAML <Image x:Name=”imgContent” Source=”/Assets/Images/2.jpg” /> Code (C#) imgContent.Source = new BitmapImage(new Uri(“/Assets/Images/2.jpg”, UriKind.Relative)); 2. Embedded in the .xap file as Resource Note that the Build Action is “Resource” XAML <Image x:Name=”imgResource” Source=”/SilverlightApplication1;component/Assets/Images/1.jpg”…

  • How to Solve SharePoint Designer’s Check In Issue

    Been 2 days I couldn’t check my files in and the SharePoint Designer keeps throwing below error on every Check In. At last I found a fix on it. The error was because I opened a Site using it’s IP Address, for example: http://192.168.11.22:3445/MySite The solve is by opening that site using the Computer Name…

  • PHP Development using Microsoft Expression Web 3

    Microsoft Expression Web 3 supports ASP (classic), PHP, and ASP.NET development – of course HTML/XHTML, CSS, and JavaScript as well. Let’s try to setup Microsoft Expression Web 3 and enable the PHP development! First we need to install Microsoft Expression Web 3. You can either purchase it or using 60 days Trial version. All can…