<?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>C# / TFS / SQL</title>
	<atom:link href="http://johanjvr.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://johanjvr.wordpress.com</link>
	<description>Anything C#, TFS and SQL...</description>
	<lastBuildDate>Wed, 30 Nov 2011 09:56:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='johanjvr.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>C# / TFS / SQL</title>
		<link>http://johanjvr.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://johanjvr.wordpress.com/osd.xml" title="C# / TFS / SQL" />
	<atom:link rel='hub' href='http://johanjvr.wordpress.com/?pushpress=hub'/>
		<item>
		<title>System.Security.SecureString HowTo</title>
		<link>http://johanjvr.wordpress.com/2011/11/30/system-security-securestring-howto/</link>
		<comments>http://johanjvr.wordpress.com/2011/11/30/system-security-securestring-howto/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 09:54:57 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[SecureString]]></category>

		<guid isPermaLink="false">https://johanjvr.wordpress.com/?p=111</guid>
		<description><![CDATA[Today I’ve had to look at System.Security.SecureString to store passwords. I would have never in my wildest dreams thought that you will have to use System.Runtime.InteropServices.Marshal to convert the SecureString value to an IntPtr and then convert that back to &#8230; <a href="http://johanjvr.wordpress.com/2011/11/30/system-security-securestring-howto/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=111&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I’ve had to look at System.Security.SecureString to store passwords. I would have never in my wildest dreams thought that you will have to use System.Runtime.InteropServices.Marshal to convert the SecureString value to an IntPtr and then convert that back to string.</p>
<p>Example:</p>
<blockquote><pre>public SecureString Value
{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    get;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </pre>
<pre>   set;</pre>
<pre>}
</pre>
</blockquote>
<blockquote><pre>public void DisplaySecureString()</pre>
<pre>{</pre>
<pre>   var valuePtr = Marshal.SecureStringToBSTR( Value );</pre>
<pre>   var stringValue = Marshal.PtrToStringBSTR( valuePtr );</pre>
<pre>   Console.WriteLine( stringValue );</pre>
<pre>}

</pre>
</blockquote>
<pre>&nbsp;</pre>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/net/'>.Net</a>, <a href='http://johanjvr.wordpress.com/category/c/'>C#</a> Tagged: <a href='http://johanjvr.wordpress.com/tag/net/'>.Net</a>, <a href='http://johanjvr.wordpress.com/tag/c/'>C#</a>, <a href='http://johanjvr.wordpress.com/tag/securestring/'>SecureString</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=111&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2011/11/30/system-security-securestring-howto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>
	</item>
		<item>
		<title>How to delete a Project in Team Foundation Server (TFS)</title>
		<link>http://johanjvr.wordpress.com/2011/10/12/how-to-delete-a-project-in-team-foundation-server-tfs/</link>
		<comments>http://johanjvr.wordpress.com/2011/10/12/how-to-delete-a-project-in-team-foundation-server-tfs/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 22:00:00 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[TFS]]></category>

		<guid isPermaLink="false">https://johanjvr.wordpress.com/2011/10/12/how-to-delete-a-project-in-team-foundation-server-tfs/</guid>
		<description><![CDATA[Open Visual Studio Command Prompt (2008), (2010), etc… TFS 2008 and below: TFSDeleteProject /server:ServerName ProjectName TFS 2010 and above: TFSDeleteProject /collection:http[s]://Servername:port/tfs “Project Name” Warning: Deleting a team project is an irrecoverable operation. All version control, work item tracking and Team &#8230; <a href="http://johanjvr.wordpress.com/2011/10/12/how-to-delete-a-project-in-team-foundation-server-tfs/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=102&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Open Visual Studio Command Prompt (2008), (2010), etc…</p>
<h5>TFS 2008 and below:</h5>
<p>TFSDeleteProject /server:ServerName ProjectName</p>
<h5>TFS 2010 and above:</h5>
<p>TFSDeleteProject /collection:http[s]://Servername:port/tfs “Project Name”</p>
<p><strong><span style="color:#ff0000;">Warning: Deleting a team project is an irrecoverable operation. All version control, work item tracking and Team Foundation build data will be destroyed from the system. The only way to recover this data is by restoring a stored backup of the databases.</span></strong></p>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/tfs/'>TFS</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=102&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2011/10/12/how-to-delete-a-project-in-team-foundation-server-tfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>
	</item>
		<item>
		<title>30 Free Programming books</title>
		<link>http://johanjvr.wordpress.com/2011/10/04/30-free-programming-books/</link>
		<comments>http://johanjvr.wordpress.com/2011/10/04/30-free-programming-books/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 18:01:00 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">https://johanjvr.wordpress.com/2011/10/04/30-free-programming-books/</guid>
		<description><![CDATA[While browsing the interwebs I found the following site where you can get 30 free programming books. Cheers Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=101&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While browsing the interwebs I found the following <a title="30 Free Programming books" href="http://citizen428.net/blog/2010/08/12/30-free-programming-ebooks/" target="_blank">site</a> where you can get 30 free programming books. </p>
<p>Cheers </p>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=101&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2011/10/04/30-free-programming-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>
	</item>
		<item>
		<title>Sync Framework 4.0 now supports any platform. iPhone, Android, Blackberry, etc&#8230;</title>
		<link>http://johanjvr.wordpress.com/2011/09/22/sync-framework-4-0-now-supports-any-platform-iphone-android-blackberry-etc/</link>
		<comments>http://johanjvr.wordpress.com/2011/09/22/sync-framework-4-0-now-supports-any-platform-iphone-android-blackberry-etc/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 18:18:30 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">https://johanjvr.wordpress.com/2011/09/22/sync-framework-4-0-now-supports-any-platform-iphone-android-blackberry-etc/</guid>
		<description><![CDATA[Sync Framework 2.1 required clients to be based on Windows. This toolkit allows other Microsoft platforms to be used for offline clients such as Silverlight, Windows Phone 7, and Windows Mobile; in addition non-Microsoft platforms such as iPhone, Android, and &#8230; <a href="http://johanjvr.wordpress.com/2011/09/22/sync-framework-4-0-now-supports-any-platform-iphone-android-blackberry-etc/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=100&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sync Framework 2.1 required clients to be based on Windows. This toolkit allows other Microsoft platforms to be used for offline clients such as Silverlight, Windows Phone 7, and Windows Mobile; in addition non-Microsoft platforms such as iPhone, Android, and Blackberry can be utilized as well as HTML.</p>
<p>More information can be found <a title="Sync Framework 4.0" href="http://blogs.msdn.com/b/sync/archive/2010/11/16/sync-framework-4-0-october-2010-ctp-refreshed-on-11-16.aspx" target="_blank">here</a>.</p>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=100&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2011/09/22/sync-framework-4-0-now-supports-any-platform-iphone-android-blackberry-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>
	</item>
		<item>
		<title>Word Embedded PDF AcroExch error</title>
		<link>http://johanjvr.wordpress.com/2011/04/28/word-embedded-pdf-acroexch-error/</link>
		<comments>http://johanjvr.wordpress.com/2011/04/28/word-embedded-pdf-acroexch-error/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 19:50:52 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://johanjvr.wordpress.com/?p=91</guid>
		<description><![CDATA[I few days ago a client sent me a document with a PDF embedded in it. I was unable open by double clicking on the embedded PDF icon. I searched for a solution and found the following link http://community.spiceworks.com/topic/post/627705 and it &#8230; <a href="http://johanjvr.wordpress.com/2011/04/28/word-embedded-pdf-acroexch-error/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=91&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I few days ago a client sent me a document with a PDF embedded in it. I was unable open by double clicking on the embedded PDF icon. I searched for a solution and found the following link http://community.spiceworks.com/topic/post/627705 and it show me how to fix it.</p>
<p><span style="color:#3c3c3c;">http://www.activesearchresults.com </span></p>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=91&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2011/04/28/word-embedded-pdf-acroexch-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>
	</item>
		<item>
		<title>Silverlight DataGrid &#8211; Add new Row</title>
		<link>http://johanjvr.wordpress.com/2010/09/05/silverlight-datagrid-add-new-row/</link>
		<comments>http://johanjvr.wordpress.com/2010/09/05/silverlight-datagrid-add-new-row/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 07:39:15 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://johanjvr.wordpress.com/2010/09/05/silverlight-datagrid-add-new-row/</guid>
		<description><![CDATA[Microsoft release a service pack for Silverligth 4.0 which now allows the Silverlight DataGrid to display a new row at the bottom of the grid. Important to me is: Issue 2 &#8211; This update enables new Add Row functionality in &#8230; <a href="http://johanjvr.wordpress.com/2010/09/05/silverlight-datagrid-add-new-row/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=88&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft release a service pack for Silverligth 4.0 which now allows the Silverlight DataGrid to display a new row at the bottom of the grid.</p>
<p>Important to me is:</p>
<p><strong>Issue 2 &#8211; This update enables new Add Row functionality in the Silverlight DataGrid control. </strong><br />
,<strong>Issue 7 &#8211; Fixed various memory leaks including:<br />
</strong></p>
<ul>
<li>Memory leaks that occur when mouse capture is used. For example, memory leaks that occur when you use CaptureMouse() in drag-and-drop scenarios. For more information, see the following Microsoft Silverlight forums discussion.</li>
<li>Memory leaks that occur when UserControl cannot be garbage-collected because it contains inline data template. For more information, see the following Microsoft Silverlight forums discussion.</li>
</ul>
<p>The have also fixed 5 other issues for more information goto <a title="KB2164913" href="http://support.microsoft.com/kb/2164913" target="_blank">KB2164913</a>.</p>
<p><a title="Silverlight 4.0 Service Release" href="http://timheuer.com/blog/archive/2010/09/01/silverlight-service-release-september-2010-gdr1.aspx" target="_blank">Get the bits here&#8230;</a></p>
<p>08-Sep-2010 &#8211; Update:</p>
<p>For the New line to work you have to implement the System.ComponentModel.ICollectionView interface.</p>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=88&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2010/09/05/silverlight-datagrid-add-new-row/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>
	</item>
		<item>
		<title>Mindscape &#8211; Released nHibernate Designer</title>
		<link>http://johanjvr.wordpress.com/2010/08/11/mindscape-released-nhibernate-designer/</link>
		<comments>http://johanjvr.wordpress.com/2010/08/11/mindscape-released-nhibernate-designer/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 13:27:29 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://johanjvr.wordpress.com/2010/08/11/mindscape-released-nhibernate-designer/</guid>
		<description><![CDATA[Mindscape just an excellent DSL for nHibernate goto Mindscape.co.nz to get all the goodness. Filed under: General, Tools<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=85&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img title="nHibernate Designer" src="http://www.mindscape.co.nz/blog/wp-content/uploads/2010/08/logo.png" border="0" alt="" /></p>
<p>Mindscape just an excellent DSL for nHibernate goto <a title="Mindscape" href="http://www.mindscape.co.nz/blog/index.php/2010/08/10/announcing-the-mindscape-nhibernate-designer/" target="_blank">Mindscape.co.nz</a> to get all the goodness.</p>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/general/'>General</a>, <a href='http://johanjvr.wordpress.com/category/tools/'>Tools</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=85&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2010/08/11/mindscape-released-nhibernate-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>

		<media:content url="http://www.mindscape.co.nz/blog/wp-content/uploads/2010/08/logo.png" medium="image">
			<media:title type="html">nHibernate Designer</media:title>
		</media:content>
	</item>
		<item>
		<title>VS2010 crashing when switching to Design view</title>
		<link>http://johanjvr.wordpress.com/2010/08/10/vs2010-crashing-when-switching-to-design-view/</link>
		<comments>http://johanjvr.wordpress.com/2010/08/10/vs2010-crashing-when-switching-to-design-view/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 07:28:42 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://johanjvr.wordpress.com/2010/08/10/vs2010-crashing-when-switching-to-design-view/</guid>
		<description><![CDATA[Microsoft released a hotfix for Visual Studio 2010 that will hopefully resolve most of the crashes Get the hotfix from KB2201993 &#8211; VS2010 crashing when switching to Design viewhere. Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=84&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Microsoft released a hotfix for Visual Studio 2010 that will hopefully resolve most of the crashes</p>
<p>Get the hotfix from <a href="https://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=30462" title="KB2201993 - VS2010 crashing when switching to Design view" target="_blank">KB2201993 &#8211; VS2010 crashing when switching to Design viewhere</a>.</p>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=84&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2010/08/10/vs2010-crashing-when-switching-to-design-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>
	</item>
		<item>
		<title>Databinding Current Item</title>
		<link>http://johanjvr.wordpress.com/2010/05/02/databinding-current-item/</link>
		<comments>http://johanjvr.wordpress.com/2010/05/02/databinding-current-item/#comments</comments>
		<pubDate>Sun, 02 May 2010 21:13:43 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://johanjvr.wordpress.com/?p=56</guid>
		<description><![CDATA[Since I&#8217;ve started in with WPF (2007) I&#8217;ve seen many people creating Validation.ErrorTemplates with the following Binding to display the error message {Binding ElementName=customAdorner, Path=AdornedElement.(Validation.Errors)[0].ErrorContent} When this binding is used you will see the following errors appear in the Debug &#8230; <a href="http://johanjvr.wordpress.com/2010/05/02/databinding-current-item/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=56&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;ve started in with WPF (2007) I&#8217;ve seen many people creating Validation.ErrorTemplates with the following Binding to display the error message</p>
<p><span style="color:#40c4ff;font-size:extrasmall;">{</span><span style="color:#ff80ff;font-size:extrasmall;">Binding</span><span style="color:#40c4ff;font-size:small;"> ElementName=</span><span style="color:#e1e1e1;font-size:small;">customAdorner</span><span style="color:#40c4ff;font-size:small;">, Path=</span><span style="color:#e1e1e1;font-size:small;">AdornedElement</span><span style="color:#40c4ff;font-size:small;">.(</span><span style="color:#e1e1e1;font-size:small;">Validation</span><span style="color:#40c4ff;font-size:small;">.</span><span style="color:#e1e1e1;font-size:small;">Errors</span><span style="color:#40c4ff;font-size:small;">)[</span><span style="color:#e0e0e0;font-size:small;">0</span><span style="color:#40c4ff;font-size:small;">].</span><span style="color:#e1e1e1;font-size:small;">ErrorContent</span><span style="color:#40c4ff;font-size:small;">}</span></p>
<p>When this binding is used you will see the following errors appear in the Debug Output window:</p>
<h6><span style="color:#80ff00;font-size:extrasmall;">System.Windows.Data Error: 16 : Cannot get &#8216;Item[]&#8216; value (type &#8216;ValidationError&#8217;) from &#8216;(Validation.Errors)&#8217; (type &#8216;ReadOnlyObservableCollection`1&#8242;). BindingExpression:Path=AdornedElement.(0).[0].ErrorContent; DataItem=&#8217;AdornedElementPlaceholder&#8217; (Name=&#8217;customAdorner&#8217;); target element is &#8216;TextBlock&#8217; (Name=&#8221;); target property is &#8216;ToolTip&#8217; (type &#8216;Object&#8217;) TargetInvocationException:&#8217;System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. &#8212;&gt; System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.<br />
Parameter name: index<br />
at System.ThrowHelper.ThrowArgumentOutOfRangeException()<br />
at System.Collections.Generic.List`1.get_Item(Int32 index)<br />
at System.Collections.ObjectModel.Collection`1.get_Item(Int32 index)<br />
at System.Collections.ObjectModel.ReadOnlyCollection`1.get_Item(Int32 index)<br />
&#8212; End of inner exception stack trace &#8212;<br />
at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct&amp; sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)<br />
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)<br />
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)<br />
at MS.Internal.Data.PropertyPathWorker.GetValue(Object item, Int32 level)<br />
at MS.Internal.Data.PropertyPathWorker.RawValue(Int32 k)&#8217;<br />
</span></h6>
<p>When you change the Binding from</p>
<p><span style="color:#40c4ff;font-size:small;">{</span><span style="color:#ff80ff;font-size:small;">Binding</span><span style="color:#40c4ff;font-size:small;"> ElementName=</span><span style="color:#e1e1e1;font-size:small;">customAdorner</span><span style="color:#40c4ff;font-size:small;">, Path=</span><span style="color:#e1e1e1;font-size:small;">AdornedElement</span><span style="color:#40c4ff;font-size:small;">.(</span><span style="color:#e1e1e1;font-size:small;">Validation</span><span style="color:#40c4ff;font-size:small;">.</span><span style="color:#e1e1e1;font-size:small;">Errors</span><span style="color:#40c4ff;font-size:small;">)</span><span style="color:#e0e0e0;font-size:x-large;">[0].</span><span style="color:#e1e1e1;font-size:small;">ErrorContent</span><span style="color:#40c4ff;font-size:small;">}</span></p>
<p><span style="font-family:Arial, Helvetica, sans-serif;color:#ffff00;font-size:medium;">To</span></p>
<p><span style="color:#40c4ff;font-size:small;">{</span><span style="color:#ff80ff;font-size:small;">Binding</span><span style="color:#40c4ff;font-size:small;"> ElementName=</span><span style="color:#e1e1e1;font-size:small;">customAdorner</span><span style="color:#40c4ff;font-size:small;">, Path=</span><span style="color:#e1e1e1;font-size:small;">AdornedElement</span><span style="color:#40c4ff;font-size:small;">.(</span><span style="color:#e1e1e1;font-size:small;">Validation</span><span style="color:#40c4ff;font-size:small;">.</span><span style="color:#e1e1e1;font-size:small;">Errors</span><span style="color:#40c4ff;font-size:small;">)</span><span style="color:#e0e0e0;font-size:x-large;">/</span><span style="color:#e1e1e1;font-size:small;">ErrorContent</span><span style="color:#40c4ff;font-size:small;">}</span></p>
<p>All the exception related to the [0] will be a thing of the past as the <span style="font-size:medium;">/</span> will bind to the current item of the collection and will not cause a any errors if there is no current item.</p>
<p>This could also be used when you have a collection of items and want to display the current item&#8217;s properties on a UI (View).</p>
<p>Hope this post can help other people.</p>
<p>Kind regards,</p>
<p>Johan J v Rensburg</p>
<p>Example Source Code: <a href="http://johanjvr.files.wordpress.com/2010/05/databinding-currentitem-rename_to_zip_from.doc">DataBinding CurrentItem.rename_to_zip</a></p>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/wpf/'>WPF</a> Tagged: <a href='http://johanjvr.wordpress.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=56&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2010/05/02/databinding-current-item/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>
	</item>
		<item>
		<title>Free giveaway from Mindscape for the first 50 members</title>
		<link>http://johanjvr.wordpress.com/2010/04/23/free-giveaway-from-mindscape-for-the-first-50-members/</link>
		<comments>http://johanjvr.wordpress.com/2010/04/23/free-giveaway-from-mindscape-for-the-first-50-members/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 06:14:05 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://johanjvr.wordpress.com/?p=51</guid>
		<description><![CDATA[Mindscape is giving away Visual Tools for SharePoint for the first 50 users click here. Hurry up times running out. Filed under: Tools Tagged: SharePoint, Tools<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=51&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Mindscape is giving away Visual Tools for SharePoint for the first 50 users <a href="http://www.mindscape.co.nz/blog/index.php/2010/04/22/introducing-visual-tools-for-sharepoint/">click here</a>. Hurry up times running out.</p>
<br />Filed under: <a href='http://johanjvr.wordpress.com/category/tools/'>Tools</a> Tagged: <a href='http://johanjvr.wordpress.com/tag/sharepoint/'>SharePoint</a>, <a href='http://johanjvr.wordpress.com/tag/tools/'>Tools</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/johanjvr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/johanjvr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/johanjvr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/johanjvr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/johanjvr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/johanjvr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/johanjvr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/johanjvr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/johanjvr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/johanjvr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/johanjvr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/johanjvr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/johanjvr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/johanjvr.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=johanjvr.wordpress.com&amp;blog=5419097&amp;post=51&amp;subd=johanjvr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://johanjvr.wordpress.com/2010/04/23/free-giveaway-from-mindscape-for-the-first-50-members/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/15149bab2487f151f67bad2f68341bac?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">johanjvr</media:title>
		</media:content>
	</item>
	</channel>
</rss>
