<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Russ Ramirez&#039;s SharePoint Blog</title>
	<atom:link href="http://generation12.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://generation12.wordpress.com</link>
	<description>Assorted rants and deep-dives</description>
	<lastBuildDate>Thu, 05 Jan 2012 14:39:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='generation12.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Russ Ramirez&#039;s SharePoint Blog</title>
		<link>http://generation12.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://generation12.wordpress.com/osd.xml" title="Russ Ramirez&#039;s SharePoint Blog" />
	<atom:link rel='hub' href='http://generation12.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Floating the SP.UI.ModalDialog</title>
		<link>http://generation12.wordpress.com/2011/10/25/floating-the-sp-ui-modaldialog/</link>
		<comments>http://generation12.wordpress.com/2011/10/25/floating-the-sp-ui-modaldialog/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 15:09:46 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=342</guid>
		<description><![CDATA[I&#8217;ve been using more of the SharePoint 2010 Client Object Model lately and had a need for a lightbox UI. I decided to use SP.UI.ModalDialog.showModalDialog(&#8230;), but found it irritating that the rendered DIV did not float by default. So I &#8230; <a href="http://generation12.wordpress.com/2011/10/25/floating-the-sp-ui-modaldialog/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=342&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using more of the SharePoint 2010 Client Object Model lately and had a need for a lightbox UI. I decided to use SP.UI.ModalDialog.showModalDialog(&#8230;), but found it irritating that the rendered DIV did not float by default.</p>
<p>So I turned to jQuery to calculate and set an offset to guarantee that the modal dialog will always render mid-window. Here is a very simple way to float the ModalDialog window; the &#8216;html&#8217; argument is your HTML markup, or you can alter this to pass in a URL.</p>
<pre>    function openDialog(html) {
        var _options = { html: html,
            allowMaximize: false,
            autoSize: true,
            showClose: true,
            title: "Zoom"
        };
        SP.UI.ModalDialog.showModalDialog(_options);
        var y = $(window).scrollTop();
        var boxBorder = $(window).height() - $(".ms-dlgContent").height();
        y = y + boxBorder / 2;
        $(".ms-dlgContent").css({ position: 'absolute', top: y });
    }</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/342/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/342/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/342/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=342&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2011/10/25/floating-the-sp-ui-modaldialog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>
	</item>
		<item>
		<title>SPWeb move or clone in PowerShell</title>
		<link>http://generation12.wordpress.com/2011/08/30/spweb-move-or-clone-in-powershell/</link>
		<comments>http://generation12.wordpress.com/2011/08/30/spweb-move-or-clone-in-powershell/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 21:10:14 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=329</guid>
		<description><![CDATA[When you have to move or clone a web in SharePoint 2010, you can make use of the Export-SPWeb and Import-SPWeb cmdlets in the Management Shell. The semantic difference between a move and a clone is whether you delete the &#8230; <a href="http://generation12.wordpress.com/2011/08/30/spweb-move-or-clone-in-powershell/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=329&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>When you have to move or clone a web in SharePoint 2010, you can make use of the Export-SPWeb and Import-SPWeb cmdlets in the Management Shell. The semantic difference between a move and a clone is whether you delete the web you exported from. There are just 4 basic steps.</div>
<div> </div>
<div>1) Determine template used to create the source web</div>
<div> </div>
<div><strong>Get-SPWeb &lt;web root url&gt; | Select-Object -Property WebTemplate, Configuration</strong></div>
<div> </div>
<div><strong>Where:</strong> &lt;web root url&gt; is http://myportal/sub-web1/sub-web11 for example</div>
<div> </div>
<div>The output will look like this:</div>
<div> </div>
<div>WebTemplate                                                                                               Configuration</div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;                                                                                                &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<div>BLANKINTERNET                                                                                                   2</div>
<div> </div>
<div>2) Create a new blank web at a new location using the template determined from 1)</div>
<div> </div>
<div><strong>New-SPWeb -Url &lt;web root url&gt; -Template &lt;template name string&gt; -Name &lt;title of web&gt; </strong><strong>-Description &lt;description text&gt;</strong></div>
<div> </div>
<div><strong>Example:</strong> New-SPWeb -Url http://myportal/sub-web2/sub-web21 -Template BLANKINTERNET#2 -Name &#8220;subweb21&#8243; -Description &#8220;New blank publishing site with workflow&#8221; </div>
<div> </div>
<div>3) Export existing web</div>
<div> </div>
<div><strong>Export-SPWeb &lt;web root url&gt; -Path C:\ExportImportData\&lt;web name&gt;WebExport.cmp </strong><strong>-CompressionSize 100000000</strong></div>
<div> </div>
<div><strong>Example:</strong> Export-SPWeb http://myportal/sub-web1/sub-web11 -Path C:\ExportImportData\WebExport.cmp -CompressionSize 100000000</div>
<div> </div>
<div>4) Import the web just exported in 3) into new web created in 2)</div>
<div> </div>
<div><strong>Import-SPWeb &lt;web root url&gt; -Path C:\ExportImportData\WebExport.cmp -Force</strong></div>
<div> </div>
<div><strong>Example:</strong> Import-SPWeb http://myportal/sub-web2/sub-web21 -Path C:\ExportImportData\WebExport.cmp -Force</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/329/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=329&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2011/08/30/spweb-move-or-clone-in-powershell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>
	</item>
		<item>
		<title>Listing all SPWeb templates for a Farm</title>
		<link>http://generation12.wordpress.com/2011/08/24/useful-management-shell-command/</link>
		<comments>http://generation12.wordpress.com/2011/08/24/useful-management-shell-command/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 17:40:39 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=324</guid>
		<description><![CDATA[A single line PS cmdlet and pipeline to save all installed SPWeb templates and their properties to a CSV file. Get-SPWebTemplate &#124; Export-Csv c:\WebTemplates.csv<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=324&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A single line PS cmdlet and pipeline to save all installed SPWeb templates and their properties to a CSV file.</p>
<p><em>Get-SPWebTemplate | Export-Csv c:\WebTemplates.csv</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/324/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=324&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2011/08/24/useful-management-shell-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>
	</item>
		<item>
		<title>User Profile Synchronization Service &#8211; June CU</title>
		<link>http://generation12.wordpress.com/2011/07/28/user-profile-synchronization-service-june-cu/</link>
		<comments>http://generation12.wordpress.com/2011/07/28/user-profile-synchronization-service-june-cu/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 19:09:14 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=319</guid>
		<description><![CDATA[Now that I have personally wrestled with this area of SharePoint 2010, I can see why Paul Culmsee calls it the Evilness. I also found out why Spence Harbar&#8217;s Rational Guide must be followed to the letter. I do not &#8230; <a href="http://generation12.wordpress.com/2011/07/28/user-profile-synchronization-service-june-cu/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=319&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now that I have personally wrestled with this area of SharePoint 2010, I can see why Paul Culmsee calls it the <a href="http://www.cleverworkarounds.com/2011/03/31/consequences-of-complexitythe-evilness-of-the-sharepoint-2010-user-profile-service/">Evilness</a>.</p>
<p>I also found out why Spence Harbar&#8217;s <a href="http://www.harbar.net/articles/sp2010ups.aspx">Rational Guide</a> must be followed to the letter. I do not understand however why he thinks the MSDN guide &#8220;is now a first class resource&#8221;, since I initially followed that guide (6/28/2011 version) to the letter on a new server installation with the June CU and found myself in epic fail land.</p>
<p>Had I followed Spence&#8217;s original post, I would have been very close to success the first time, and it was the insights in that post that led me to the last few tweaks and success.</p>
<p>While the version of Forefront Identity Manager (lovingly referred to as FIM) in the June CU is not even the RTM build of FIM 2010, it is working for my customer, syncing its little heart out. A happy ending at least.</p>
<p>UPDATE: This <a href="http://blog.clauskonrad.net/2011/05/fim-2010-developers-quick-introduction.html">post</a> provides additional insights into FIM architecture and moving parts. Das gut.</p>
<p>BTW, some out there throw all kinds of caution around using the FIM Client GUI, but that is quite literally the same as saying &#8220;Pay no attention to that man behind the curtain!&#8221;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/319/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/319/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/319/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=319&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2011/07/28/user-profile-synchronization-service-june-cu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>
	</item>
		<item>
		<title>ChromeOS &#8211; last look</title>
		<link>http://generation12.wordpress.com/2010/12/16/chromeos-last-look/</link>
		<comments>http://generation12.wordpress.com/2010/12/16/chromeos-last-look/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 17:06:14 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[Oops]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=311</guid>
		<description><![CDATA[If things &#8220;sort out&#8221; in a technology area as fast as they come along, there will be less litter laying around. Such may be the case with ChromeOS. I did a quick comparison the other evening between Mint (a compacted &#8230; <a href="http://generation12.wordpress.com/2010/12/16/chromeos-last-look/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=311&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If things &#8220;sort out&#8221; in a technology area as fast as they come along, there will be less litter laying around. Such may be the case with ChromeOS.</p>
<p>I did a quick comparison the other evening between Mint (a compacted distro) and ChromeOS and found little difference on the surface. If you take Mint and make the ChomeOS home page in Chrome the home page in any browser that will run on Mint, the only real difference is that Mint actually works because all of it is there :-)</p>
<p>With insiders proclaiming <a title="death" href="http://tech.slashdot.org/story/10/12/16/0412220/Gmail-Creator-Says-Chrome-OS-Is-As-Good-As-Dead?from=rss" target="_blank">death</a>, I think it&#8217;s case closed. (Thanks for the link Greg)</p>
<p>Reminds me of snow removal. It comes, it gets all dirty, then it&#8217;s shoved aside.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/311/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/311/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/311/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=311&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2010/12/16/chromeos-last-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>
	</item>
		<item>
		<title>ChromeOS in VirtualBox &#8211; second look</title>
		<link>http://generation12.wordpress.com/2010/12/09/chrome-os-in-virtualbox-widescreen-support/</link>
		<comments>http://generation12.wordpress.com/2010/12/09/chrome-os-in-virtualbox-widescreen-support/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 16:44:44 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=305</guid>
		<description><![CDATA[As I blogged yesterday, I attempted today to get wide screen support to work with ChromeOS as a VirtualBox Guest OS. When you try to configure the display properties from the Gnome desktop, you may receive the error &#8221;Failed to execute &#8230; <a href="http://generation12.wordpress.com/2010/12/09/chrome-os-in-virtualbox-widescreen-support/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=305&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As I blogged yesterday, I attempted today to get wide screen support to work with ChromeOS as a VirtualBox Guest OS.</p>
<p>When you try to configure the display properties from the Gnome desktop, you may receive the error &#8221;Failed to execute child process &#8220;gnome-display-properties&#8221;. The first fix for this is do go into the Software Manager and find the gnome-control-center package and install this. At this point you can see the properties, but cannot change them.</p>
<p>Next I did a little research and found virtualbox guest extension kernel packages, again in the Software Manager, but for the VirtualBox OSE which is not what I use. So a little RTFM on the VirtualBox Users Manual revealed that the VBoxGuestAdditions.iso did contain the proper kernel drivers, up to OpenSuse 11.2 anyway.</p>
<p>Out of the box with the RC, ChromeOS is lacking support for mounting a CD drive, and further, you cannot explore your &#8220;Computer&#8221;. So using sudo to run the Guest Additions from the virtual CD in the VM is a non-starter, at least while ChromeOS is in a use it &#8220;as-is&#8221; state. Once ChromeOS goes RTW, I&#8217;ll try this again and see if the CD problem is resolved.</p>
<p>However, all of this raises the simple question of what would be the real downside of simply installing a small footprint Linux distro along with a performant desktop choice, and installing the Chrome browser on it? In other words, if you take the approach that Roku did, but target a browser instead of a custom UI, have you not met your goal of essentially building the 2010 equivalent of a WebTV box?</p>
<p>Further, is ChromeOS really about building a better PC OS, or more about the Chrome Web Store? I wonder.</p>
<p>I&#8217;ll update on this topic as things sort out a bit more.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/305/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/305/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/305/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=305&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2010/12/09/chrome-os-in-virtualbox-widescreen-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>
	</item>
		<item>
		<title>ChromeOS in VirtualBox &#8211; no problemo</title>
		<link>http://generation12.wordpress.com/2010/12/08/chrome-os-first-looks/</link>
		<comments>http://generation12.wordpress.com/2010/12/08/chrome-os-first-looks/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 21:27:07 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=289</guid>
		<description><![CDATA[I installed the RC release 0.9.576 of Chrome after waiting a while to be able to download it in a reasonable amount of time. For a first-try, I decided to install ChromeOS in a VirtualBox VM &#8211; just select any &#8230; <a href="http://generation12.wordpress.com/2010/12/08/chrome-os-first-looks/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=289&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I installed the RC release 0.9.576 of Chrome after waiting a while to be able to download it in a reasonable amount of time. For a first-try, I decided to install ChromeOS in a VirtualBox VM &#8211; just select any Linux distro if you do this, though ChromeOS is built upon OpenSuse 11.3.</p>
<p>Like Ubuntu, ChromeOS boots to full function from CD. There&#8217;s at least one post out there already on booting it from a USB thumb-drive.</p>
<p>My current interest in ChromeOS is to build/configure a lightweight but performant HTPC; really more of a set-top web on an HD display (thin client) type of application. OK, Google TV is sort of doing this, but I want to see if I can beat its current price point and get anything available on the web. I recently purchased a Roku XD, and I like it as a very cost-effective alternative to PayPerView or rentals &#8211; though Amazon&#8217;s VOD is a competitive offering for now. Part of the problem right now with HuluPlus on Roku for example, is support for H.264 but not necessarily for Flash or Silverlight encoded content with DRM. So a PC, even a nettop, still rules until some form of convergence happens as it eventually did with smart phones.</p>
<p>My end goal is to see if it will boot from a Acer AspireRevo AR3700, which I believe it will. If it performs better than Windows 7 with the Chrome browser, then I would keep that configuration as I already have ways to do Windows Media Center from a desktop to our Xbox 360 as a connector, though streaming video from my Windows Home Server may tip this experiment in favor of Win7 (which the AspireRevo comes preloaded with anyway). At $349, the Acer AspireRevo is at the throw-away price point when something better comes along that enables many of us to ditch the cable TV, i.e. I&#8217;ll consider the $349 well spent in the interim.</p>
<p>Keep in mind that Google released this as a Release Candidate. For starters, you may get a few errors concerning the fact that the license key file is missing, but they appear so far to be inconsequential.</p>
<p>ChromeOS is using Gnome desktop, which I think might be why folks thought it was built upon Ubuntu, but it&#8217;s definitely OpenSuse. Once it&#8217;s fully installed, which takes a few reboot cycles, it does boot to the Gnome desktop pretty fast. ChromeOS&#8217;s installed application footprint is small, so no surprise here.</p>
<p>Oddly, and somewhat humorously, upon final reboot, the Chrome browser did not autostart, but can be added to the Startup group with a click. Below is a thumbnail of a grab of the Win7 desktop running ChromeOS in VirtualBox (click it for full size).</p>
<p><a href="http://generation12.files.wordpress.com/2010/12/hulu_on_chrome1.png"><img class="aligncenter size-thumbnail wp-image-294" title="hulu_on_chrome" src="http://generation12.files.wordpress.com/2010/12/hulu_on_chrome1.png?w=150&#038;h=93" alt="" width="150" height="93" /></a>The playback was excellent considering this was in a VM and no special drivers or tweaks were made. If I can get the display fully functional, i.e. widescreen from the VM like Ubuntu or Mint support, then I can just enter full screen mode in VirtualBox and use the native Win7 HDMI support to get this on my TV, but I suspect it will look pretty poor on a larger display.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=289&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2010/12/08/chrome-os-first-looks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>

		<media:content url="http://generation12.files.wordpress.com/2010/12/hulu_on_chrome1.png?w=150" medium="image">
			<media:title type="html">hulu_on_chrome</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Crescent may kill SSRS</title>
		<link>http://generation12.wordpress.com/2010/12/06/microsoft-crescent-may-kill-ssrs/</link>
		<comments>http://generation12.wordpress.com/2010/12/06/microsoft-crescent-may-kill-ssrs/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 22:32:56 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[Silverlight 5]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=286</guid>
		<description><![CDATA[Near the end of  ScottGu&#8217;s keynote at last weeks Silverlight Firestarter event http://channel9.msdn.com/Series/Silverlight-Firestarter/Silverlight-Firestarter-2010-Keynote-with-Scott-Guthrie there was a final demo (73:10 into the video) of a new product called Crescent. Crescent is a data visualization/reporting application built upon a Silverlight 5 stack. Watch the demo (actually &#8230; <a href="http://generation12.wordpress.com/2010/12/06/microsoft-crescent-may-kill-ssrs/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=286&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Near the end of  ScottGu&#8217;s keynote at last weeks Silverlight Firestarter event <a href="http://channel9.msdn.com/Series/Silverlight-Firestarter/Silverlight-Firestarter-2010-Keynote-with-Scott-Guthrie">http://channel9.msdn.com/Series/Silverlight-Firestarter/Silverlight-Firestarter-2010-Keynote-with-Scott-Guthrie</a> there was a final demo (73:10 into the video) of a new product called Crescent.</p>
<p>Crescent is a data visualization/reporting application built upon a Silverlight 5 stack. Watch the demo (actually watch the whole keynote if you have time) and see what you think. Keep in mind that Silverlight 5 is coming with much improved printing support, so if you really need a paper copy of some insight, you can get it &#8211; though the obvious interactivity Crescent provides probably takes away some of the incentive to print.</p>
<p>Here&#8217;s a link to a Crescent site MS has put up.</p>
<p><a href="http://www.microsoft.com/showcase/en/us/details/a90a1be4-7125-46b6-abdb-66966d764ddd">http://www.microsoft.com/showcase/en/us/details/a90a1be4-7125-46b6-abdb-66966d764ddd</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/286/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/286/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/286/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=286&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2010/12/06/microsoft-crescent-may-kill-ssrs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>
	</item>
		<item>
		<title>Developing 2007 web parts on VS 2010</title>
		<link>http://generation12.wordpress.com/2010/12/02/developing-2007-web-parts-on-vs-2010/</link>
		<comments>http://generation12.wordpress.com/2010/12/02/developing-2007-web-parts-on-vs-2010/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 15:42:59 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=281</guid>
		<description><![CDATA[If you find yourself in a development environment consisting of the somewhat unlikely combination of MOSS and Visual Studio 2010, there is a simple way around a few things that will get in the way. First, VS 2010 does not &#8230; <a href="http://generation12.wordpress.com/2010/12/02/developing-2007-web-parts-on-vs-2010/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=281&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you find yourself in a development environment consisting of the somewhat unlikely combination of MOSS and Visual Studio 2010, there is a simple way around a few things that will get in the way.</p>
<p>First, VS 2010 does not ship with a web part project template targeting MOSS because MS understandably wanted to maintain a consistent upgrade path from VS 2008 and the latter only had Workflow project templates. The Visual Web Part project template by itself is not terribly incompatible with MOSS, but VS 2010 requires that you have a SharePoint 2010 instance present in the environment you are using it in.</p>
<p>While it may be possible to hack your way around the root causes of this issue, there are a few simple ways to just get right down to work.</p>
<p>One such simple approach is to remember that web parts are a specialization of <em>Server Controls</em>.</p>
<p>Create a server control project targeting .NET 3.5 and either proceed to modify the class file stub created for you, or replace it with an old web part class file you have handy. Either way, you will need to make a few other minor tweaks to the project.</p>
<ol>
<li>Add the SharePoint DLL reference (obvious)</li>
<li>Change the parent class you are inheriting from if starting from scratch</li>
<li>Add a <span style="color:#3366ff;">using</span> statement to reference System.Security along with adding [assembly: AllowPartiallyTrustedCallers] to the AssemblyInfo.cs file</li>
<li>Add your assembly signing key file (*.snk) to the project if you want VS to sign the assembly on build</li>
<li>Add a *.DWP file is you go the WSS 2.0 route, but the ASP.NET web part approach of course negates the need for one of these if you GAC the assembly</li>
</ol>
<p>That&#8217;s pretty much it. If you prefer the VSeWSS approach, there are posts out there on how to migrate these to VS 2010.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=281&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2010/12/02/developing-2007-web-parts-on-vs-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>
	</item>
		<item>
		<title>Resolving SDK namespace references in Silverlight 4.0</title>
		<link>http://generation12.wordpress.com/2010/10/27/resolving-sdk-namespace-references-in-silverlight-4-0/</link>
		<comments>http://generation12.wordpress.com/2010/10/27/resolving-sdk-namespace-references-in-silverlight-4-0/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 19:53:27 +0000</pubDate>
		<dc:creator>generation12</dc:creator>
				<category><![CDATA[Silverlight 4.0]]></category>

		<guid isPermaLink="false">http://generation12.wordpress.com/?p=255</guid>
		<description><![CDATA[When using a DataGrid control for example; as in the following XAML snippet:  xmlns:sdk=&#8221;http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk&#8220;           &#60;sdk:DataGrid AutoGenerateColumns="True"             Margin="12,55,119,12"             x:Name="MyGrid" /&#62;   You will need to include a reference to System.Windows.Controls.Data and System.Windows.Controls.Data.Input in addition to the reference to System.Windows.Controls included by default in &#8230; <a href="http://generation12.wordpress.com/2010/10/27/resolving-sdk-namespace-references-in-silverlight-4-0/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=255&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#000000;">When using a DataGrid control for example; as in the following XAML snippet: </span></p>
<p><span style="color:#0000ff;"><span style="color:#ff0000;">xmlns</span>:<span style="color:#ff0000;">sdk</span>=&#8221;<a href="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk">http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk</a>&#8220;</span></p>
<p><span style="color:#0000ff;"> </span></p>
<pre><span style="color:#0000ff;">        &lt;<span style="color:#800000;">sdk</span>:<span style="color:#800000;">DataGrid</span> <span style="color:#ff0000;">AutoGenerateColumn</span>s="True"</span>
<span style="color:#0000ff;">            <span style="color:#ff0000;">Margin</span>="12,55,119,12"</span>
<span style="color:#0000ff;">            <span style="color:#ff0000;">x:Name</span>="MyGrid" /&gt;</span></pre>
<p><span style="font-family:Consolas;"> </span></p>
<p><span style="color:#000000;">You will need to include a reference to System.Windows.Controls.Data and System.Windows.Controls.Data.Input in addition to the reference to System.Windows.Controls included by default in the Silverlight Application template in Visual Studio 2010.</span></p>
<p><span style="color:#000000;">You will not typically run into this kind of problem using the Designer window, but may if (like me) you tend to type your markup manually. Obvious shortcut path to resolving reference issues is to use the designer temporarily to insert the problem control and see what changes in your references and/or markup :-). </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/generation12.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/generation12.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/generation12.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/generation12.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/generation12.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/generation12.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/generation12.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/generation12.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/generation12.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/generation12.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/generation12.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/generation12.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/generation12.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/generation12.wordpress.com/255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=generation12.wordpress.com&amp;blog=1380828&amp;post=255&amp;subd=generation12&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://generation12.wordpress.com/2010/10/27/resolving-sdk-namespace-references-in-silverlight-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b9417869a16aea0e02a6e1498c3b23b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">generation12</media:title>
		</media:content>
	</item>
	</channel>
</rss>
