<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Technoeuphoria</title><link>http://innovativesingapore.com/blogs/jocelyn/default.aspx</link><description>For as long as I can remember, Technology has always fascinated me.</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 (Build: 30929.2835)</generator><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Technoeuphoria" type="application/rss+xml" /><item><title>TechFriday: Building Custom Behaviors</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/aVZSQneaGsM/techfriday_2D00_building_2D00_custom_2D00_behaviors.aspx</link><pubDate>Mon, 29 Jun 2009 07:15:19 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:282</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Okay, I missed Tech Friday, so I decided to make it Tech Weekend instead. I attended the &lt;a href="http://mstechevents.sg/ViewEvent.aspx?eventId=241"&gt;June Mix-It-Up: Re-MIX&lt;/a&gt; last Thursday and was able to catch up a bit on the new technologies. I have been busy with a few other things at work and I am ashamed to say, I have been lagging behind! :|&lt;/p&gt;  &lt;p&gt;One of the things that interested me is behaviors in Silverlight 3. &lt;a href="http://www.bing.com/search?q=behaviors+in+silverlight+3"&gt;If you do a bit of searching&lt;/a&gt; you’ll find quite a few articles on behaviors. Basically, it’s the ability to encapsulate “behaviors” that you can reuse on different UIElements that developers can write and have their designers use (with drag and drop of course) to earn brownie points. Expression Blend 3 comes with a few behaviors out of the box. They’re the ones listed in the screen shot below, apart from the first one which is the behavior I created:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_09528905.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_7A3BAA2A.png" width="618" height="453" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;My favorite, I would have to say is the MouseDragElementBehavior. To use it, all you have to do is drag and drop it to any element in your app to enable drag and drop capabilities. There’s just so much you can do for interactivity with that behavior alone. I remember this being one of the things I use to code time and time again with previous projects I used to tinker with.&lt;/p&gt;  &lt;p&gt;Another behavior that I’ve always wished I could encapsulate was the “bring to front” behavior. Say you have a bunch of UI elements scattered in a pile on the screen, you sometimes want it to behave in such a way that an element you click on gets floated to the top. This is probably a behavior that you would like to use in several scenarios/apps so it makes sense to build a behavior for it, and reuse it across different projects.&lt;/p&gt;  &lt;p&gt;WARNING: I think I’m using a different build of Blend so I won’t get into the details of where to get which assemblies. I’ll update this post once Blend 3 is out, but I think what’s more important is understanding how building a behavior would be like more or less.&lt;/p&gt;  &lt;p&gt;Basically what I did was build a Silverlight Class Library that inherited from the Behavior generic:&lt;/p&gt;  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;public class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;BringToTopBehavior &lt;/span&gt;: &lt;span style="color:#2b91af;"&gt;Behavior&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;Canvas&lt;/span&gt;&amp;gt;
{
&lt;blockquote&gt;&lt;p&gt;//some code here&lt;/p&gt;&lt;/blockquote&gt;
}&lt;/pre&gt;

&lt;p&gt;When creating your own behaviors, Canvas would be the object you would like to apply your behavior to. Next thing to do is override the onAttached() method:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;protected override void &lt;/span&gt;OnAttached()
{
    &lt;span style="color:blue;"&gt;base&lt;/span&gt;.OnAttached();

    AssociatedObject.Loaded += &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;RoutedEventHandler&lt;/span&gt;(AssociatedObject_Loaded);
    
}&lt;/pre&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;AssociatedObject would be the the actual instance to which the behavior is attached. What I did here is add an event handler to the Loaded event because I wanted to attach another event handler to each of the objects that gets loaded into the canvas. I can only get the children once the UI element has finished loading. My Loaded handler looks something like this:&lt;/p&gt;

&lt;p&gt;&amp;#160;&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;void &lt;/span&gt;AssociatedObject_Loaded(&lt;span style="color:blue;"&gt;object &lt;/span&gt;sender, &lt;span style="color:#2b91af;"&gt;RoutedEventArgs &lt;/span&gt;e)
 {
   
     &lt;span style="color:blue;"&gt;foreach &lt;/span&gt;(&lt;span style="color:blue;"&gt;var &lt;/span&gt;child &lt;span style="color:blue;"&gt;in &lt;/span&gt;AssociatedObject.Children)
     {
         child.MouseLeftButtonUp += child_MouseLeftButtonUp;
     }
 }&lt;/pre&gt;

&lt;p&gt;What I’m doing is attaching a handler to the MouseLeftButtonUp event for each of the objects contained in the Canvas in question. This handler is defined as:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;void &lt;/span&gt;child_MouseLeftButtonUp(&lt;span style="color:blue;"&gt;object &lt;/span&gt;sender, System.Windows.Input.&lt;span style="color:#2b91af;"&gt;MouseButtonEventArgs &lt;/span&gt;e)
{
    BringToTop(sender);
}&lt;/pre&gt;

&lt;p&gt;I created a few private methods to handle sorting the z-orders of the elements contained in the Canvas:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;private void &lt;/span&gt;BringToTop(&lt;span style="color:blue;"&gt;object &lt;/span&gt;element)
 {
     
     &lt;span style="color:#2b91af;"&gt;Canvas &lt;/span&gt;p = (&lt;span style="color:#2b91af;"&gt;Canvas&lt;/span&gt;)((&lt;span style="color:#2b91af;"&gt;FrameworkElement&lt;/span&gt;)element).Parent;
     &lt;span style="color:blue;"&gt;int &lt;/span&gt;z = getHighestValue(p);
     &lt;span style="color:blue;"&gt;for &lt;/span&gt;(&lt;span style="color:blue;"&gt;int &lt;/span&gt;i = 0; i &amp;lt; p.Children.Count; i++)
     {
         &lt;span style="color:blue;"&gt;var &lt;/span&gt;child = p.Children[i];
         &lt;span style="color:blue;"&gt;if &lt;/span&gt;(element.Equals(child))
         {
             child.SetValue(&lt;span style="color:#2b91af;"&gt;Canvas&lt;/span&gt;.ZIndexProperty, z);
         }        
     }
 }

 &lt;span style="color:blue;"&gt;private int &lt;/span&gt;getHighestValue(&lt;span style="color:#2b91af;"&gt;Canvas &lt;/span&gt;p)
 {
     &lt;span style="color:blue;"&gt;int &lt;/span&gt;highest = 0;
     &lt;span style="color:blue;"&gt;foreach &lt;/span&gt;(&lt;span style="color:blue;"&gt;var &lt;/span&gt;child &lt;span style="color:blue;"&gt;in &lt;/span&gt;p.Children)
     {
         &lt;span style="color:blue;"&gt;var &lt;/span&gt;val = (&lt;span style="color:blue;"&gt;int&lt;/span&gt;)child.GetValue(&lt;span style="color:#2b91af;"&gt;Canvas&lt;/span&gt;.ZIndexProperty);
         &lt;span style="color:blue;"&gt;if &lt;/span&gt;( val &amp;gt; highest) {
             highest = val;
         }
         child.SetValue(&lt;span style="color:#2b91af;"&gt;Canvas&lt;/span&gt;.ZIndexProperty, val - 1);
     }
     &lt;span style="color:blue;"&gt;return &lt;/span&gt;highest;
 }&lt;/pre&gt;

&lt;p&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;This probably isn’t the best implementation of this behavior but it gets the job done :)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;USING THE BEHAVIOR&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Once you’ve finished writing your behavior you can compile the code and reference that dll into any of your existing projects and start using the behaviors. Right-click on references, click Add Reference, and navigate to the compiled dll of your custom behavior.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_4EF71323.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_2EDC0666.png" width="404" height="232" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Once you’re done, you should be able to make use of this behavior through blend. In my case, I can click and drag BringToTopBehavior to my chosen Canvas and I would see the following:&lt;/p&gt;

&lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_0EC0F9A9.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_1574032C.png" width="564" height="745" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_3522DCF4.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_671A7D7E.png" width="345" height="262" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Now you’ll notice, however, when I try to drag and drop the behavior to the Grid panel, it tells me that it’s not a valid drop target.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_19121E09.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_26E46404.png" width="348" height="173" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;This is because, in my definition of my behavior, I’d specified that this behavior can be applied only to Canvases. But now, I realize the same behavior can apply to any Panel object. What I can do now is update my behavior definition to, instead of Canvas, have it apply to Panel instead:&lt;/p&gt;

&lt;pre style="width:99.47%;height:251px;" class="code"&gt;&lt;span style="color:blue;"&gt;public class &lt;/span&gt;&lt;span style="color:#2b91af;"&gt;BringToTopBehavior &lt;/span&gt;: &lt;span style="color:#2b91af;"&gt;Behavior&lt;/span&gt;&amp;lt;&lt;span style="color:#2b91af;"&gt;Panel&lt;/span&gt;&amp;gt;
  {
      &lt;span style="color:green;"&gt;//somecode
      &lt;/span&gt;&lt;span style="color:blue;"&gt;private void &lt;/span&gt;BringToTop(&lt;span style="color:blue;"&gt;object &lt;/span&gt;element)
      {

          &lt;span style="color:#2b91af;"&gt;Panel &lt;/span&gt;p = (&lt;span style="color:#2b91af;"&gt;Panel&lt;/span&gt;)((&lt;span style="color:#2b91af;"&gt;FrameworkElement&lt;/span&gt;)element).Parent;
          &lt;span style="color:green;"&gt;//some code
      &lt;/span&gt;}
      &lt;span style="color:blue;"&gt;private int &lt;/span&gt;getHighestValue(&lt;span style="color:#2b91af;"&gt;Panel &lt;/span&gt;p)
      {
          &lt;span style="color:green;"&gt;//some code       
      &lt;/span&gt;}
  }&lt;/pre&gt;

&lt;p&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;With this change, I should be able to apply the behavior to any UIElement inheriting from Panel. I’ve zipped up and uploaded the code for this project. Feel free to download and explore here:&lt;/p&gt;
&lt;iframe style="border-bottom:#dde5e9 1px solid;border-left:#dde5e9 1px solid;padding-bottom:0px;background-color:#ffffff;margin:3px;padding-left:0px;width:240px;padding-right:0px;height:66px;border-top:#dde5e9 1px solid;border-right:#dde5e9 1px solid;padding-top:0px;" src="http://cid-bdfb7845c22e26b6.skydrive.live.com/embedrowdetail.aspx/Projects/BTT.zip" frameborder="0"&gt;&lt;/iframe&gt;

&lt;p&gt;For more about the greatness of behaviors, check out this Mix Video: &lt;a title="http://videos.visitmix.com/MIX09/C27M" href="http://videos.visitmix.com/MIX09/C27M"&gt;http://videos.visitmix.com/MIX09/C27M&lt;/a&gt; and of course the link to the behavior pack used in the demo: &lt;a title="http://gallery.expression.microsoft.com/en-us/MIXBehaviorPack" href="http://gallery.expression.microsoft.com/en-us/MIXBehaviorPack"&gt;http://gallery.expression.microsoft.com/en-us/MIXBehaviorPack&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=282" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/aVZSQneaGsM" height="1" width="1"/&gt;</description><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/06/30/techfriday_2D00_building_2D00_custom_2D00_behaviors.aspx</feedburner:origLink></item><item><title>How I Upload Photos to Facebook</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/33fRYayt5Ys/how_2D00_i_2D00_upload_2D00_photos_2D00_to_2D00_facebook.aspx</link><pubDate>Tue, 19 May 2009 03:06:33 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:281</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I just have to say, I am loving &lt;a href="http://www.microsoft.com/Windows/Windows-7/download.aspx"&gt;Windows 7 RC&lt;/a&gt;. One of things I like that is an extended part of Windows 7 is the Windows Live Essentials. On a fresh install of Windows 7, go into the search bar and type in “Windows Live Essentials” or you can search for it using your favorite search engine to get to the &lt;a href="http://download.live.com/"&gt;download portal.&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_4F188151.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_20DE8597.png" width="351" height="456" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;There are a few things included in the suite but what I want to talk about today is the Windows Live Photo Gallery. It’s quite similar to &lt;a href="http://www.microsoft.com/windows/windows-vista/features/photo-gallery.aspx"&gt;Vista’s Photo Gallery&lt;/a&gt; but much, much better. You can either &lt;a href="http://dev.live.com/photogallery/"&gt;build your own plugins&lt;/a&gt; or &lt;a href="http://blogs.msdn.com/pix/pages/Plug_2D00_ins.aspx"&gt;download ones that have been built by others&lt;/a&gt;. I’ll be talking about one in particular, the &lt;a href="http://www.codeplex.com/liveuploadfacebook"&gt;Live Upload to Facebook&lt;/a&gt; Plugin. &lt;/p&gt;  &lt;p&gt;Scenario is this: after importing my pictures into my machine, I want to review them before uploading them to Facebook (or flickr or whatever service you want). Think of it as quality control.&lt;/p&gt;  &lt;p&gt;The Facebook upload control makes it easy to upload photos if you already know which photos you want. My problem is that, I import my photos into folders based on events. And rarely do I want to upload all the photos I’ve taken of an event up into facebook, or flicker.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_2FC5B4B1.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_1223B3E5.png" width="593" height="484" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;What I do is use &lt;a href="http://download.live.com/photogallery"&gt;Windows Live Photo Gallery&lt;/a&gt; to quickly view and rate my photos 5 stars for the ones I want to upload to Facebook. (or i could do something like, 3 for facebook, 5 for flickr, etc.)&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_46946060.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_1FB62453.png" width="326" height="343" /&gt;&lt;/a&gt;&amp;#160; &lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_4FB05007.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_13E09187.png" width="324" height="342" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Another thing the software does is (1) identify faces in the photos and (2) allow you to tag people from your messenger list (or specify the name of someone who’s not)&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_2ADEECF6.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_02BC180A.png" width="644" height="441" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I can then go back to the gallery:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_45A7C0AA.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_176DC4F0.png" width="285" height="161" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;And either sort:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_544246C2.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_20D65D99.png" width="644" height="379" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;or filter the photos in a specific folder:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_090F0066.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_3D7FACE1.png" width="644" height="379" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;And now, since I have the Live Uploader plugin installed I can easily select and publish the photos into facebook:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_1FDDAC15.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_453779B6.png" width="644" height="451" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I’m prompted to select the account I want to use:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_139BE654.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_2F10C28A.png" width="644" height="405" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I can then either create a new album, or select an existing album to publish the pictures to. Straight from the software, you can also control permissions for the album&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_7C7D3F4A.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_7E1DE551.png" width="471" height="382" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I can also then map my tags to my contact list on facebook for automatic tagging:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_4F0B83AD.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_3BBAA741.png" width="591" height="484" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Once it’s done publishing, my friends will be able to see my photos published in my feed. YEY!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_56571D8D.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_521D1FFB.png" width="442" height="484" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;What you’ll need?&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Required:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Windows Live Photo Gallery - &lt;a title="http://download.live.com/photogallery" href="http://download.live.com/photogallery"&gt;http://download.live.com/photogallery&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Live Upload to Facebook plugin - &lt;a title="http://www.codeplex.com/liveuploadfacebook" href="http://www.codeplex.com/liveuploadfacebook"&gt;http://www.codeplex.com/liveuploadfacebook&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Optional:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Windows 7 RC - &lt;a title="http://www.microsoft.com/Windows/Windows-7/download.aspx" href="http://www.microsoft.com/Windows/Windows-7/download.aspx"&gt;http://www.microsoft.com/Windows/Windows-7/download.aspx&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=281" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/33fRYayt5Ys" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Cool+Software/default.aspx">Cool Software</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Windows+Live_2100_/default.aspx">Windows Live!</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/How+Do+I/default.aspx">How Do I</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/05/20/how_2D00_i_2D00_upload_2D00_photos_2D00_to_2D00_facebook.aspx</feedburner:origLink></item><item><title>How Do I Manage Two Twitter Accounts Using Just My Browser</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/MCr8khzy-kE/how_2D00_do_2D00_i_2D00_manage_2D00_two_2D00_twitter_2D00_accounts_2D00_using_2D00_just_2D00_my_2D00_browser.aspx</link><pubDate>Tue, 19 May 2009 03:03:03 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:280</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Twitter has definitely become more and more popular both for work and for personal stuff. I have my personal twitter account which I use as I please: update the world about my bathroom habits, complain about unfortunate events, have random conversations with people, etc. I also have another work account which I have just started, with the goal of reaching out to the product development companies in Singapore (i have yet to think about how to go about this). &lt;/p&gt;  &lt;p&gt;Sometimes I don’t like using the desktop clients because they tend to become a bit too heavy to keep running. So I keep twitter opened in my browser. The challenge is if I find someone interesting from my personal account and I want to follow them on my work account, it’s a bit taxing to logout-login. &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;I make use of &lt;a href="http://www.microsoft.com/windows/internet-explorer/default.aspx"&gt;IE8’s&lt;/a&gt; &lt;a href="http://www.microsoft.com/windows/internet-explorer/features/browse-privately.aspx?tabid=2&amp;amp;catid=1"&gt;InPrivate Browsing feature&lt;/a&gt;. To activate you can either press &amp;lt;&lt;strong&gt;Ctrl+Shift+P&amp;gt;&lt;/strong&gt; or under Safety Menu, you can click on InPrivate Browsing.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_5F78F8DF.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_488A0196.png" width="561" height="484" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;You should be able to login with different credentials this way. I use the same method when I need to login with different Live IDs as well. (I think i have 7 o_O)&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_5698CAC6.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_473542EA.png" width="1026" height="466" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=280" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/MCr8khzy-kE" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/ie8/default.aspx">ie8</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/How+Do+I/default.aspx">How Do I</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/05/20/how_2D00_do_2D00_i_2D00_manage_2D00_two_2D00_twitter_2D00_accounts_2D00_using_2D00_just_2D00_my_2D00_browser.aspx</feedburner:origLink></item><item><title>Click Once Deployment from Windows 7 Machines</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/KkYRZ_mfAuI/click-once-deployment-from-windows-7-machines.aspx</link><pubDate>Wed, 13 May 2009 08:30:16 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:279</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I was trying out Click Once Deployment and was getting errors when i tried installing from the published point.&amp;#160; I was getting the error &amp;quot;The required version of the .NET Framework is not installed on this computer.&amp;quot; I found this thread when I did a search &lt;a title="http://stackoverflow.com/questions/526264/clickonce-the-required-version-of-the-net-framework-is-not-installed-on-this-co" href="http://stackoverflow.com/questions/526264/clickonce-the-required-version-of-the-net-framework-is-not-installed-on-this-co"&gt;http://stackoverflow.com/questions/526264/clickonce-the-required-version-of-the-net-framework-is-not-installed-on-this-co&lt;/a&gt; where Tim Heuer posts a fix:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;em&gt;Hey all, I was updating one of my own plugins and ran into this as well, so I thought I&amp;#39;d ask some friends internally :-). Here&amp;#39;s the skinny...&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;The following file is missing in Win7RC .NET distribution (this is known and being addressed): %ProgramFiles%\Reference Assemblies\Microsoft\Framework\v3.5\RedistList\FrameworkList.xml&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Copy that file from a non Win7 machine (same location) to the Win7 box and your publish should work. &lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;I&amp;#39;m traveling and haven&amp;#39;t verified yet (don&amp;#39;t have a non Win7 box near me), but wanted to post this for you all.&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Hope this helps!&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;-th&lt;/em&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;Worked for me!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=279" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/KkYRZ_mfAuI" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/2007+Office+System/default.aspx">2007 Office System</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Click+Once/default.aspx">Click Once</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/05/14/click-once-deployment-from-windows-7-machines.aspx</feedburner:origLink></item><item><title>Understanding Prism V2</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/UgMH4_Tjme0/understanding_2D00_prism_2D00_v2.aspx</link><pubDate>Wed, 01 Apr 2009 08:17:58 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:278</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Here are some videos on Channel 9 that walk through building an application using the &lt;a href="http://www.codeplex.com/CompositeWPF"&gt;Composite Application Guidance for WPF and Silverlight&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://channel9.msdn.com/posts/akMSFT/Creating-a-modular-application-using-Prism-V2-Part-1-of-4--Creating-a-shell-and-modules/"&gt;Creating Modular Applications&lt;/a&gt;     &lt;br /&gt;&lt;a href="http://channel9.msdn.com/posts/akMSFT/Creating-a-modular-application-using-Prism-V2-Screencast-24--Visual-Composition/"&gt;Visual Composition&lt;/a&gt;     &lt;br /&gt;&lt;a href="http://channel9.msdn.com/posts/akMSFT/Creating-a-modular-application-using-Prism-V2-Screencast-34--Implementing-views-and-services/"&gt;Implementing Views and Services&lt;/a&gt;     &lt;br /&gt;&lt;a href="http://channel9.msdn.com/posts/akMSFT/Creating-a-modular-application-using-Prism-v2-Screencast-44--Decoupled-Communication/"&gt;Decoupled Communication&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=278" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/UgMH4_Tjme0" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Resources/default.aspx">Resources</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/WPF/default.aspx">WPF</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Patterns+And+Practices/default.aspx">Patterns And Practices</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/04/02/understanding_2D00_prism_2D00_v2.aspx</feedburner:origLink></item><item><title>Now Showing @ Golden Village Webslice</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/_9Pt1e1fJaM/now-showing-golden-village-webslice.aspx</link><pubDate>Wed, 25 Mar 2009 09:52:04 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:277</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I’m a movie buff myself and I was very happy to see that Golden Village has put up their own web slice for movies now showing :) Head down to &lt;a href="http://www.gv.com.sg"&gt;http://www.gv.com.sg&lt;/a&gt; and install the slice by hovering over the Now Showing section. Great thing is that once you’ve installed the slice, you can actually buy tickets straight from the web slice. Cool stuff! I see Fanboys is on now, that’s definitely a must watch hehe&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_5E058BED.png"&gt;&lt;img style="display:inline;" title="image" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_7C6FCCD6.png" width="1046" height="990" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=277" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/_9Pt1e1fJaM" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Cool+Stuff/default.aspx">Cool Stuff</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/ie8/default.aspx">ie8</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/03/26/now-showing-golden-village-webslice.aspx</feedburner:origLink></item><item><title>Piss Offline!</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/Xb8wH_cbhd4/piss_2D00_offline.aspx</link><pubDate>Sat, 21 Mar 2009 01:52:16 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:275</guid><dc:creator>jocelyn</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;I was watching &lt;a href="http://live.visitmix.com"&gt;http://live.visitmix.com&lt;/a&gt; (check out the day 1 keynote recording, definitely a must see) the other day when they announced &lt;a href="http://silverlight.net/getstarted/silverlight3/default.aspx"&gt;Silverlight 3&lt;/a&gt; and I was just really excited about the things that were coming.You can head down to &lt;a title="http://silverlight.net/getstarted/silverlight3/default.aspx" href="http://silverlight.net/getstarted/silverlight3/default.aspx"&gt;http://silverlight.net/getstarted/silverlight3/default.aspx&lt;/a&gt; to see a list of the features you can now play with. I wanted to try out the Out Of Browser feature which they call “SLOOB”, on my &lt;a href="http://www.badgorilla.net/pissoff/"&gt;Piss Off&lt;/a&gt; application (the only app I know how to build :p) Whats’s great was that i didn’t have to change any part of my code except the ApplicationManifest.xml. Here’s what it looks like:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_5BF9D35B.png"&gt;&lt;img style="display:inline;" title="image" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_79F7E14F.png" width="606" height="405" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Things to note, I added the EntryPointAssembly and the EntryPointType (LiveSearch was the name of my project), and Filled in the &amp;lt;ApplicationIdentity /&amp;gt; I wanted to use custom icons for my app so I added this to my project and set the build types of the icons to “Content”. When I published my app on &lt;a href="http://www.badgorilla.net/pissoffline"&gt;http://www.badgorilla.net/pissoffline&lt;/a&gt; and right click on it, I now see the option to “Install Piss Off onto this computer”:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_791F7B65.png"&gt;&lt;img style="display:inline;" title="image" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_2ED4C0C0.png" width="664" height="764" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;When I click, I have the options to either create shortcuts on the Start Menu or the Desktop:&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_1FDD6BD9.png"&gt;&lt;img style="display:inline;" title="image" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_41E5C79F.png" width="581" height="341" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;When i clicked ok, I can now see the app running, complete with my custom icons! &lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_53E1E55F.png"&gt;&lt;img style="display:inline;" title="image" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_5733573A.png" width="699" height="679" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Sorry about the name, this app can’t really run offline right now since it pulls from the Live Search service. I’ll think of some offline functionality for this application and put it in soon. :)&lt;/p&gt;  &lt;p&gt;If you want to find out more about Silverlight 3, start with &lt;a href="http://blogs.msdn.com/webnext/"&gt;Laurence Moroney&lt;/a&gt;’s free e-book of &lt;a href="http://go.microsoft.com/?linkid=9654953"&gt;&lt;em&gt;First Look: Microsoft Silverlight 3&lt;/em&gt;&lt;/a&gt;&lt;em&gt;&amp;#160;&lt;/em&gt;then get your tools from &lt;a title="http://silverlight.net/getstarted/silverlight3/default.aspx" href="http://silverlight.net/getstarted/silverlight3/default.aspx"&gt;http://silverlight.net/getstarted/silverlight3/default.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Happy SLOOBing!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=275" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/Xb8wH_cbhd4" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Sample+Codes/default.aspx">Sample Codes</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Windows+Live+Search/default.aspx">Windows Live Search</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/fun/default.aspx">fun</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/03/22/piss_2D00_offline.aspx</feedburner:origLink></item><item><title>Playing with the Silverlight Toolkit</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/iyvATyNIIWI/playing-with-the-silverlight-toolkit.aspx</link><pubDate>Sun, 22 Feb 2009 16:52:08 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:273</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Yes, it’s as easy as it looks. I’m actually just creating this post so that I can test the app I just built. &lt;a href="http://www.codeplex.com/Silverlight"&gt;The Silverlight Toolkit&lt;/a&gt; has actually been in release since December but I haven’t had the time to play around with it yet. In the toolkit are some really cool components that you can start using in your Silverlight applications. I’m going to need to work with some charts in an upcoming project so I decided to test it out.&lt;/p&gt;  &lt;p&gt;Installing the toolkit is easy. All you need to do is download the binaries from the site (or you can download the package with the source files if you want to do a bit of tweaking of your own). Once you’ve downloaded and unzipped it onto your drive, you can add a reference to the dll’s in your project. &lt;/p&gt;  &lt;p&gt;Right click on references and select add reference:&lt;/p&gt;  &lt;p&gt;&lt;img width="640" height="378" alt="" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;In my case I wanted to make use of the PieCharts so I added the DataVisualization dlls:&lt;/p&gt;  &lt;p&gt;&lt;img width="640" height="378" alt="" /&gt;&lt;/p&gt;  &lt;p&gt;Also, to make things easier, you can add these new controls to the toolbox by right-clicking on it and selecting Choose Items..&lt;/p&gt;  &lt;p&gt;&lt;img width="640" height="378" alt="" /&gt;&lt;/p&gt;  &lt;p&gt;Then navigating to where you unzipped the dlls and of course selecting. Your toolbox should then be populated with the controls when this is done. Note that you won’t be able to drag and drop any of the controls to the design view, but you should be able to do it on the XAML code. When you do that, Visual Studio will automatically add a reference to the namespace and you can start using the control in your code. You’ll get something like:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_53C16531.png"&gt;&lt;img style="display:inline;" title="image" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_604F124D.png" width="559" height="132" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;For the sample, I followed what was stated in the &lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%202&amp;amp;referringTitle=Home"&gt;guided tour&lt;/a&gt;, but I moved the title attribute to the Chart element. The title didn’t seem to show when I placed it on the PieSeries element:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_18F9BC5B.png"&gt;&lt;img style="display:inline;" title="image" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_577F0A01.png" width="676" height="239" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;As for what the application does, it simply reads the latest 10 posts from my feed and counts the number of posts tagged as personal, media, tech, and the posts whose title starts with “Tweets” which are basically posts that aggregate my twitter posts in supposedly a day. I wanted to have a visual of how much I’m actually leaving this blog to the hands of my twitter aggregator :-S. &lt;/p&gt; &lt;iframe style="width:481px;height:400px;" src="http://www.badgorilla.net/toolkittest/" frameborder="0"&gt;&lt;/iframe&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=273" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/iyvATyNIIWI" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Silverlight/default.aspx">Silverlight</category><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Code+Bits/default.aspx">Code Bits</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/02/23/playing-with-the-silverlight-toolkit.aspx</feedburner:origLink></item><item><title>UPDATE: Web Messenger is HERE!</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/yDsCD9z_Lpc/web_2D00_messenger_2D00_is_2D00_coming_2D00_2.aspx</link><pubDate>Sat, 14 Feb 2009 02:02:07 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:272</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;strike&gt;&lt;/strike&gt;&lt;/p&gt;  &lt;p&gt;You can find the Messenger icon on the upper right corner of the page when you access Live Mail from the browser.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_74A4C3BD.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_30645C71.png" width="240" height="116" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_14539D86.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_50133639.png" width="222" height="89" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Once you sign in, you’ll have the same presence options as you do on the client version of the messenger.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_1B06A709.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_4FA70344.png" width="368" height="423" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;You can access your contacts and start an IM conversation.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_58CEC0A4.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_3EFA8A75.png" width="640" height="460" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;And this is how the messenger window looks like:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_32BDDE6F.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_526CB837.png" width="498" height="584" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;There is one problem though:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_0DC01DF6.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_0D53EB01.png" width="507" height="474" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;nudging is quite important for me as well :)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=272" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/yDsCD9z_Lpc" height="1" width="1"/&gt;</description><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/02/15/web_2D00_messenger_2D00_is_2D00_coming_2D00_2.aspx</feedburner:origLink></item><item><title>Be Vigilant!</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/5W-7kx0CBr8/be-vigilant.aspx</link><pubDate>Wed, 11 Feb 2009 03:28:04 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:270</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;a href="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_00A3372E.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_thumb_5F00_10CEFF27.png" width="840" height="804" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I was browsing through my spam mail again today and this is something I saw. Apart from the messed up email, you’ll notice the link and as you can see, it’s not enough to just read part of the URL but the entire URL.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=270" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/5W-7kx0CBr8" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Security/default.aspx">Security</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/02/12/be-vigilant.aspx</feedburner:origLink></item><item><title>Fences for Windows</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/V-FtQ4Z2xDE/fences_2D00_for_2D00_windows.aspx</link><pubDate>Fri, 06 Feb 2009 04:42:54 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:269</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;a href="http://www.stardock.com/products/fences/index.asp"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="clip_image002" border="0" alt="clip_image002" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/clip_5F00_image002_5F00_4814F887.jpg" width="640" height="191" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Discovered this through &lt;a href="http://twitter.com/theproductguy"&gt;a fellow twitter-er&lt;/a&gt; and i must say it’s something very useful for someone like me as i usually clutter my desktop with stuff and when it’s presentation time, I select all icons and dump it into a folder. :| But then, I for get to put them back onto the visible desktop so i start harassing my desktop with new stuff again :-S I remember once,&amp;#160; I ended up with a couple of gigs on my desktop folder hehe &lt;/p&gt;  &lt;p&gt;Also, it seems to run great on Windows 7. Try it out today &lt;a title="http://www.stardock.com/products/fences/index.asp" href="http://www.stardock.com/products/fences/index.asp"&gt;http://www.stardock.com/products/fences/index.asp&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=269" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/V-FtQ4Z2xDE" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Cool+Software/default.aspx">Cool Software</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/02/07/fences_2D00_for_2D00_windows.aspx</feedburner:origLink></item><item><title>Microsoft Web Platform</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/1hTVu5gSjho/microsoft-web-platform.aspx</link><pubDate>Wed, 21 Jan 2009 02:45:56 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:261</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;If you’re looking for an easy way to get started on building on Microsoft’s Web Platform, check out the Microsoft Web Platform Installer 1.0.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.microsoft.com/web/channel/products/WebPlatformInstaller.aspx"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_3ED19267.png" width="363" height="397" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.microsoft.com/web/channel/products/WebPlatformInstaller.aspx"&gt;Microsoft Web Platform&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=261" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/1hTVu5gSjho" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Announcement/default.aspx">Announcement</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/01/22/microsoft-web-platform.aspx</feedburner:origLink></item><item><title>Singapore Partners - Windows Live</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/TBAK7rgxKRs/singapore-partners-windows-live.aspx</link><pubDate>Tue, 20 Jan 2009 07:42:11 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:260</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;If you’re an independent software vendor who wants to keep up to date to the latest information on the different Microsoft Technologies, any events or trainings that we’re conducting locally, subscribe to &lt;a href="http://sgpartners.spaces.live.com"&gt;http://sgpartners.spaces.live.com&lt;/a&gt; where we will be posting updates for ISVs regularly. &lt;/p&gt;  &lt;p&gt;If you want to subscribe to alerts, visit the site,&amp;#160; go to Tools –&amp;gt; Sign up for Alerts&lt;/p&gt;  &lt;p&gt;&lt;a href="http://sgpartners.spaces.live.com"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/image_5F00_5084BEB1.png" width="378" height="295" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://sgpartners.spaces.live.com/default.aspx"&gt;Singapore Partners - Windows Live&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=260" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/TBAK7rgxKRs" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Announcement/default.aspx">Announcement</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/01/21/singapore-partners-windows-live.aspx</feedburner:origLink></item><item><title>Tim Sneath : The Bumper List of Windows 7 Secrets</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/AgdKmbo2pbM/tim-sneath-the-bumper-list-of-windows-7-secrets.aspx</link><pubDate>Wed, 14 Jan 2009 08:38:01 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:256</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt; Check out this blog post from Tim Sneath for some tips and tricks on on Windows 7.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.msdn.com/tims/archive/2009/01/12/the-bumper-list-of-windows-7-secrets.aspx"&gt;Tim Sneath : The Bumper List of Windows 7 Secrets&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=256" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/AgdKmbo2pbM" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Windows+7/default.aspx">Windows 7</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/01/15/tim-sneath-the-bumper-list-of-windows-7-secrets.aspx</feedburner:origLink></item><item><title>Installing Win7 using a USB Stick</title><link>http://feedproxy.google.com/~r/Technoeuphoria/~3/Bpxnw_MhM2c/installing-win7-using-a-usb-stick.aspx</link><pubDate>Wed, 14 Jan 2009 08:33:05 GMT</pubDate><guid isPermaLink="false">0a9fe603-d7f7-4888-b92f-30b865448c50:255</guid><dc:creator>jocelyn</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Check out Dennis’s video on how to install Windows 7 using a USB Stick. Click the image below:&lt;/p&gt;  &lt;p&gt;&lt;a target="_blank" href="http://edge.technet.com/Media/Installing-Win7-using-a-USB-Stick/"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="clip_image002" border="0" alt="clip_image002" src="http://innovativesingapore.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/jocelyn/clip_5F00_image002_5F00_4E6F1D0B.jpg" width="644" height="285" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://innovativesingapore.com/aggbug.aspx?PostID=255" width="1" height="1"&gt;&lt;img src="http://feeds.feedburner.com/~r/Technoeuphoria/~4/Bpxnw_MhM2c" height="1" width="1"/&gt;</description><category domain="http://innovativesingapore.com/blogs/jocelyn/archive/tags/Windows+7/default.aspx">Windows 7</category><feedburner:origLink>http://innovativesingapore.com/blogs/jocelyn/archive/2009/01/15/installing-win7-using-a-usb-stick.aspx</feedburner:origLink></item></channel></rss>
