<?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/"
	>

<channel>
	<title>Dan Rigby &#187; Tips and Tricks</title>
	<atom:link href="http://danrigby.com/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://danrigby.com</link>
	<description>Random Thoughts About Life, Technology, and Software</description>
	<lastBuildDate>Thu, 01 Jul 2010 16:49:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Quick and Easy Google (or Bing) Web Search in Visual Studio</title>
		<link>http://danrigby.com/2010/03/03/quick-and-easy-google-or-bing-web-search-in-visual-studio/</link>
		<comments>http://danrigby.com/2010/03/03/quick-and-easy-google-or-bing-web-search-in-visual-studio/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 02:48:38 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=277</guid>
		<description><![CDATA[Here is a quick and easy way to add a Google (or Bing) Web Search link to the context menu in Visual Studio: Open the Visual Studio macros IDE by navigating to Tools –&#62; Macros –&#62; Macros IDE (or pressing Alt+F11). Right click on “MyMacros” and select Add New –&#62; Add New Item. Select the [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick and easy way to add a Google (or Bing) Web Search link to the context menu in Visual Studio:</p>
<ul>
<li>Open the Visual Studio macros IDE by navigating to Tools –&gt; Macros –&gt; Macros IDE (or pressing Alt+F11).</li>
<li>Right click on “MyMacros” and select Add New –&gt; Add New Item.</li>
<li>Select the Module template, name the module “Search”, and click Add.</li>
<li>Paste the following code directly before the “End Module” line:
<pre class="brush: vb;">
Sub Search()
    Dim strUrl As String
    Dim selection As TextSelection = DTE.ActiveDocument.Selection()
    If selection.Text &lt;&gt; &quot;&quot; Then
        strUrl = &quot;www.google.com/search?q=&quot; + selection.Text
        'strUrl = &quot;www.bing.com/search?q=&quot; + selection.Text
        DTE.ExecuteCommand(&quot;View.URL&quot;, strUrl)
    Else
        MsgBox(&quot;Select Text first to Search&quot;)
    End If
End Sub
</pre>
</li>
<li>(Optional) If you prefer to use Bing for your search, uncomment the Bing line and comment out the Google line.</li>
<li>Your macro editor window should now look something like this:<br />
<img title="image" src="http://danrigby.com/wp-content/uploads/2010/03/image_thumb.png" border="0" alt="image" width="604" height="454" /></li>
<li>Save and close the Macro Editor window and IDE.</li>
<li>Right click on the Visual Studio toolbar and select Customize.</li>
<li>Under the Toolbars tab, check the Context Menus option and the switch to the Commands tab.</li>
<li>Select the Macros Category, and then select the “MyMacros.Search.Search” macro.</li>
<li>Drag the selected macro onto “Editor Context Menus” -&gt; “Code Window” and then drop it where you want it in the context menu (I place mine below the Paste command).</li>
<li>Right click on the new context menu item and change it’s name to “&amp;Web Search”.</li>
<li>Click close on the Customize window.</li>
<li>You are now done! If everything has gone according to plan, when viewing a source code file you should now see a new context menu item that will do a web search on any selected text when you click it:<br />
<img title="image" src="http://danrigby.com/wp-content/uploads/2010/03/image_thumb1.png" border="0" alt="image" width="604" height="454" /><br />
<img title="image" src="http://danrigby.com/wp-content/uploads/2010/03/image_thumb2.png" border="0" alt="image" width="604" height="454" /></li>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;body=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;bodytext=Here%20is%20a%20quick%20and%20easy%20way%20to%20add%20a%20Google%20%28or%20Bing%29%20Web%20Search%20link%20to%20the%20context%20menu%20in%20Visual%20Studio%3A%0D%0A%0D%0A%09Open%20the%20Visual%20Studio%20macros%20IDE%20by%20navigating%20to%20Tools%20%E2%80%93%26gt%3B%20Macros%20%E2%80%93%26gt%3B%20Macros%20IDE%20%28or%20pressing%20Alt%2BF11%29.%0D%0A%09Right%20click%20on%20%E2%80%9CMyM" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;notes=Here%20is%20a%20quick%20and%20easy%20way%20to%20add%20a%20Google%20%28or%20Bing%29%20Web%20Search%20link%20to%20the%20context%20menu%20in%20Visual%20Studio%3A%0D%0A%0D%0A%09Open%20the%20Visual%20Studio%20macros%20IDE%20by%20navigating%20to%20Tools%20%E2%80%93%26gt%3B%20Macros%20%E2%80%93%26gt%3B%20Macros%20IDE%20%28or%20pressing%20Alt%2BF11%29.%0D%0A%09Right%20click%20on%20%E2%80%9CMyM" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=Here%20is%20a%20quick%20and%20easy%20way%20to%20add%20a%20Google%20%28or%20Bing%29%20Web%20Search%20link%20to%20the%20context%20menu%20in%20Visual%20Studio%3A%0D%0A%0D%0A%09Open%20the%20Visual%20Studio%20macros%20IDE%20by%20navigating%20to%20Tools%20%E2%80%93%26gt%3B%20Macros%20%E2%80%93%26gt%3B%20Macros%20IDE%20%28or%20pressing%20Alt%2BF11%29.%0D%0A%09Right%20click%20on%20%E2%80%9CMyM" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;t=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio%20-%20http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;annotation=Here%20is%20a%20quick%20and%20easy%20way%20to%20add%20a%20Google%20%28or%20Bing%29%20Web%20Search%20link%20to%20the%20context%20menu%20in%20Visual%20Studio%3A%0D%0A%0D%0A%09Open%20the%20Visual%20Studio%20macros%20IDE%20by%20navigating%20to%20Tools%20%E2%80%93%26gt%3B%20Macros%20%E2%80%93%26gt%3B%20Macros%20IDE%20%28or%20pressing%20Alt%2BF11%29.%0D%0A%09Right%20click%20on%20%E2%80%9CMyM" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2010/03/03/quick-and-easy-google-or-bing-web-search-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatically Cancelling a Failed Build in Visual Studio</title>
		<link>http://danrigby.com/2009/10/04/automatically-cancelling-a-failed-build-in-visual-studio/</link>
		<comments>http://danrigby.com/2009/10/04/automatically-cancelling-a-failed-build-in-visual-studio/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 01:43:19 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=238</guid>
		<description><![CDATA[Stumbled across this little tip on how to automatically cancel a build in progress after getting an error. You normally have to wait for visual studio to try to finish building all of the remaining projects before getting a chance to fix an the issue and this can take a few minutes if you have [...]]]></description>
			<content:encoded><![CDATA[<p>Stumbled across <a href="http://www.ehow.com/how_5025041_automatically-visual-studio-build-error.html" target="_blank">this little tip</a> on how to automatically cancel a build in progress after getting an error. You normally have to wait for visual studio to try to finish building all of the remaining projects before getting a chance to fix an the issue and this can take a few minutes if you have a lot of projects in your solution.</p>
<p><strong>Step 1:</strong> Open the Visual Studio macros IDE by navigating to Tools –&gt; Macros –&gt; Macros IDE.</p>
<p><strong>Step 2:</strong> Double click on “MyMacros” and then on “EnvironmentEvents”. You should now be looking at a VB code editor window.</p>
<p><strong>Step 3:</strong> Paste the following code directly before the “End Module” line:</p>
<pre class="brush: vb;">
Private Sub BuildEvents_OnBuildProjConfigDone(ByVal Project As String, ByVal ProjectConfig As String, ByVal Platform As String, ByVal SolutionConfig As String, ByVal Success As Boolean) Handles BuildEvents.OnBuildProjConfigDone

    If Success = False Then
        DTE.ExecuteCommand(&quot;Build.Cancel&quot;)
    End If

End Sub
</pre>
<p><strong>Step 4: </strong>Save and close the Macro Editor window and IDE.</p>
<p>All done!</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;bodytext=Stumbled%20across%20this%20little%20tip%20on%20how%20to%20automatically%20cancel%20a%20build%20in%20progress%20after%20getting%20an%20error.%20You%20normally%20have%20to%20wait%20for%20visual%20studio%20to%20try%20to%20finish%20building%20all%20of%20the%20remaining%20projects%20before%20getting%20a%20chance%20to%20fix%20an%20the%20issue" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;notes=Stumbled%20across%20this%20little%20tip%20on%20how%20to%20automatically%20cancel%20a%20build%20in%20progress%20after%20getting%20an%20error.%20You%20normally%20have%20to%20wait%20for%20visual%20studio%20to%20try%20to%20finish%20building%20all%20of%20the%20remaining%20projects%20before%20getting%20a%20chance%20to%20fix%20an%20the%20issue" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=Stumbled%20across%20this%20little%20tip%20on%20how%20to%20automatically%20cancel%20a%20build%20in%20progress%20after%20getting%20an%20error.%20You%20normally%20have%20to%20wait%20for%20visual%20studio%20to%20try%20to%20finish%20building%20all%20of%20the%20remaining%20projects%20before%20getting%20a%20chance%20to%20fix%20an%20the%20issue" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;t=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;annotation=Stumbled%20across%20this%20little%20tip%20on%20how%20to%20automatically%20cancel%20a%20build%20in%20progress%20after%20getting%20an%20error.%20You%20normally%20have%20to%20wait%20for%20visual%20studio%20to%20try%20to%20finish%20building%20all%20of%20the%20remaining%20projects%20before%20getting%20a%20chance%20to%20fix%20an%20the%20issue" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/10/04/automatically-cancelling-a-failed-build-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF / Silverlight Links</title>
		<link>http://danrigby.com/2009/09/02/wpf-silverlight-links/</link>
		<comments>http://danrigby.com/2009/09/02/wpf-silverlight-links/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 02:15:25 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wpf]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=210</guid>
		<description><![CDATA[09/15/2009 &#8211; Edit: I now have a static page dedicated to these links. I&#8217;m just starting go through my WPF books, so I wanted to capture some useful WPF / Silverlight links that I&#8217;ve discovered over the last year. Windows Client &#8211; Winforms and WPF Home. Information, tutorials, links. http://windowsclient.net/default.aspx Silverlight Home &#8211; Information, tutorials, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>09/15/2009 &#8211; Edit: I now have a </strong><a href="http://danrigby.com/blend-silverlight-and-wpf/"><strong>static page</strong></a><strong> dedicated to these links.</strong></p>
<p>I&#8217;m just starting go through my WPF books, so I wanted to capture some useful WPF / Silverlight links that I&#8217;ve discovered over the last year.</p>
<p>Windows Client &#8211; Winforms and WPF Home. Information, tutorials, links.<br />
<a href="http://windowsclient.net/default.aspx">http://windowsclient.net/default.aspx</a></p>
<p>Silverlight Home &#8211; Information, tutorials, links.<br />
<a href="http://silverlight.net/default.aspx">http://silverlight.net/default.aspx</a></p>
<p>Web Platform &#8211; Microsoft Web Platform Information. Web Platform Installer download.<br />
<a href="http://www.microsoft.com/web/default.aspx">http://www.microsoft.com/web/default.aspx</a></p>
<p>Codeplex WPF Home &#8211; Portal for accessing the WPF Toolkit and the WPF Futures releases.<br />
<a href="http://www.codeplex.com/wpf">http://www.codeplex.com/wpf</a></p>
<p>WPF Toolkit &#8211; Additional Controls, Themes, and Tools for WPF.<br />
<a href="http://wpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29117">http://wpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29117</a></p>
<p>Silverlight Toolkit &#8211; Additional Controls, Themes, and Tools for Silverlight.<br />
<a href="http://silverlight.codeplex.com/">http://silverlight.codeplex.com/</a></p>
<p>Patterns and Practicies: Composite WPF and Silverlight (Prism) &#8211; WPF /Silverlight Application Framework and Patterns.<br />
<a href="http://compositewpf.codeplex.com/">http://compositewpf.codeplex.com/ </a></p>
<p>Caliburn &#8211; WPF / Silverlight Application Framework.<br />
<a href="http://caliburn.codeplex.com/">http://caliburn.codeplex.com/</a></p>
<p>Visifire &#8211; Free (for GPL&#8217;d works) Silverlight and WPF Charting Controls. Has dual licensing model for closed source usage.<br />
<a href="http://www.visifire.com/">http://www.visifire.com/</a></p>
<p>Kaxaml &#8211; Lightweight XAML Editor.<br />
<a href="http://www.kaxaml.com/">http://www.kaxaml.com/</a></p>
<p>WebAii &#8211; Free Web Application Testing Framework for IE and Firefox. V2 Will support Silverlight.<br />
<a href="http://www.artoftest.com/products/webaii.aspx">http://www.artoftest.com/products/webaii.aspx</a></p>
<p>Ninject &#8211; Fast, Lightweight .Net Dependency Injection<br />
<a href="http://www.ninject.org/">http://www.ninject.org/</a></p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=WPF%20%2F%20Silverlight%20Links&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F&amp;title=WPF%20%2F%20Silverlight%20Links" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F&amp;title=WPF%20%2F%20Silverlight%20Links&amp;bodytext=09%2F15%2F2009%20-%20Edit%3A%20I%20now%20have%20a%20static%20page%20dedicated%20to%20these%20links.%0D%0A%0D%0AI%27m%20just%20starting%20go%20through%20my%20WPF%20books%2C%20so%20I%20wanted%20to%20capture%20some%20useful%20WPF%20%2F%20Silverlight%20links%20that%20I%27ve%20discovered%20over%20the%20last%20year.%0D%0A%0D%0AWindows%20Client%20-%20Winforms%20and%20W" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F&amp;title=WPF%20%2F%20Silverlight%20Links&amp;notes=09%2F15%2F2009%20-%20Edit%3A%20I%20now%20have%20a%20static%20page%20dedicated%20to%20these%20links.%0D%0A%0D%0AI%27m%20just%20starting%20go%20through%20my%20WPF%20books%2C%20so%20I%20wanted%20to%20capture%20some%20useful%20WPF%20%2F%20Silverlight%20links%20that%20I%27ve%20discovered%20over%20the%20last%20year.%0D%0A%0D%0AWindows%20Client%20-%20Winforms%20and%20W" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F&amp;title=WPF%20%2F%20Silverlight%20Links" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F&amp;title=WPF%20%2F%20Silverlight%20Links&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=09%2F15%2F2009%20-%20Edit%3A%20I%20now%20have%20a%20static%20page%20dedicated%20to%20these%20links.%0D%0A%0D%0AI%27m%20just%20starting%20go%20through%20my%20WPF%20books%2C%20so%20I%20wanted%20to%20capture%20some%20useful%20WPF%20%2F%20Silverlight%20links%20that%20I%27ve%20discovered%20over%20the%20last%20year.%0D%0A%0D%0AWindows%20Client%20-%20Winforms%20and%20W" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F&amp;t=WPF%20%2F%20Silverlight%20Links" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=WPF%20%2F%20Silverlight%20Links%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F&amp;title=WPF%20%2F%20Silverlight%20Links&amp;annotation=09%2F15%2F2009%20-%20Edit%3A%20I%20now%20have%20a%20static%20page%20dedicated%20to%20these%20links.%0D%0A%0D%0AI%27m%20just%20starting%20go%20through%20my%20WPF%20books%2C%20so%20I%20wanted%20to%20capture%20some%20useful%20WPF%20%2F%20Silverlight%20links%20that%20I%27ve%20discovered%20over%20the%20last%20year.%0D%0A%0D%0AWindows%20Client%20-%20Winforms%20and%20W" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F09%2F02%2Fwpf-silverlight-links%2F&amp;title=WPF%20%2F%20Silverlight%20Links" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/09/02/wpf-silverlight-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retroactive Browser Compatibility</title>
		<link>http://danrigby.com/2009/04/19/retroactive-browser-compatibility/</link>
		<comments>http://danrigby.com/2009/04/19/retroactive-browser-compatibility/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 22:45:03 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Compatibility]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://danrigby.com/2009/04/19/retroactive-browser-compatibility/</guid>
		<description><![CDATA[When working on an existing web application you may be placed in a situation where you need to support new browsers, or just other browsers that your app wasn’t originally coded for or tested in. In my case, this took the form of a web app developed exclusively for Internet Explorer that now needed to [...]]]></description>
			<content:encoded><![CDATA[<p>When working on an existing web application you may be placed in a situation where you need to support new browsers, or just other browsers that your app wasn’t originally coded for or tested in. In my case, this took the form of a web app developed exclusively for Internet Explorer that now needed to support other browsers. As I went through and corrected many of the browser incompatibilities, I noticed a few common ones, and wanted to mention them in case it’s beneficial to others in the same situation.</p>
<p>I should mention up front that jQuery was an indispensible tool when I was working on this project as in many cases I was able to replace the offending JavaScript with a jQuery equivalent that was cross browser compatible. If you’re a web developer and are not familiar with <a href="http://www.jquery.com" target="_blank">jQuery</a>, you probably should be. <img src='http://danrigby.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>So a couple of things to look out for… I wanted to list the easiest ones to spot first as you can do a text search and usually find all of them:</p>
<ol>
<li><strong>CSS Expressions:</strong>
<ul>
<li>Were implemented in IE5 and allow you to assign a JavaScript expression to a CSS property.</li>
<li>Were deprecated in IE8 standards mode, see <a href="http://blogs.msdn.com/ie/archive/2008/10/16/ending-expressions.aspx" target="_blank">http://blogs.msdn.com/ie/archive/2008/10/16/ending-expressions.aspx</a> for details.</li>
<li>IE specific.</li>
<li>Search for: “expression(”</li>
<li>Replace with JavaScript that dynamically modifies the CSS properties in response to specific browser events (onresize, etc).
<ul>
<li>In many cases this can be more performant than CSS expressions because you can choose to bind to specific events (CSS expressions are reevaluated *every* time a JavaScript event with at least 1 listener fires.</li>
</ul>
</li>
</ul>
</li>
<li><strong>outerHTML:</strong>
<ul>
<li>“Get or set the HTML of the entire node x, including the outermost tag (element x itself).”</li>
<li>Example: x.outerHTML = &#8220;Let&#8217;s &lt;u&gt;change&lt;/u&gt; it!&#8221;</li>
<li>IE specific.</li>
<li>Search for: “outerHTML”</li>
<li>Replace with innerHTML or W3C DOM methods. innerHTML is in theory faster, but IE and Konquerer have some issues when innerHTML is used with tables. Replacing outerHTML with calls to innerHTML will also require some changes to the logic using outerHTML as innerHTML is slightly different in behavior.</li>
</ul>
</li>
<li><strong>Visual Filters:</strong>
<ul>
<li>Used commonly to create gradients without using images.</li>
<li>More information on Visual Filters: <a href="http://msdn.microsoft.com/en-us/library/ms532853.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/ms532853.aspx</a></li>
<li>IE specific.</li>
<li>Example: &lt;ELEMENT STYLE=&#8221;filter:progid:DXImageTransform.Microsoft.Gradient(sProperties)&#8221; &#8230; &gt;</li>
<li>Search for: “DXImageTransform”</li>
<li>Replace with… Unfortunately there really isn’t an equivalent for this. Some of the visual filters can be replicated using standard CSS properties, but not all of them. As convenient as the visual filters are, they will only work in internet explorer at the moment.</li>
</ul>
</li>
<li><strong>Window.Event:</strong>
<ul>
<li>Used to access JavaScript event information in IE.</li>
<li>IE Specific.</li>
<li>Search for: “window.event”</li>
<li>This item could have several pages written about it, but the short story is that IE handles passing JavaScript event information differently than other browsers. You will need to code your JavaScript to accommodate this difference. jQuery can again be useful here as it can abstract a lot of this problem away from you. I recommend reading the section on events here: <a href="http://www.reloco.com.ar/mozilla/compat.html" target="_blank">http://www.reloco.com.ar/mozilla/compat.html</a> as it will give you an overview of the problem and how to address it.</li>
</ul>
</li>
<li><strong>Custom Attributes:</strong>
<ul>
<li>Used to defined custom element attributes.</li>
<li>Getting or setting custom attributes without using DOM methods is not cross browser compatible.
<ul>
<li>Example: element.MyProp = “This doesn’t work in all browsers.”</li>
</ul>
</li>
<li>Search for… No good search string for these. You just need to keep your eyes out for JavaScript that makes calls to custom attributes without using DOM methods (or jQuery).</li>
<li>Replace with: calls to .getAttribute(“MyProp”) or setAttribute(“MyProp”) or if using jQuery, element.attr() as shown here: <a href="http://docs.jquery.com/Attributes/attr" target="_blank">http://docs.jquery.com/Attributes/attr</a>.</li>
</ul>
</li>
</ol>
<p>This list is by no means exhaustive, but I wanted to point out many of the common issues I have come across. Your mileage may vary. I recommend checking out the references listed below for a lot more good compatibility information. I’ve tried to check all of my facts, but if you notice anything that seems off, let me know so I can fix it!</p>
<p><strong>References:</strong></p>
<ul>
<li><a href="http://www.reloco.com.ar/mozilla/compat.html" target="_blank">http://www.reloco.com.ar/mozilla/compat.html</a> – “Making your web browser compatible with Firefox”
<ul>
<li>A good overview of many of the common browser compatibility problems faced when making an web app written for IE work in Firefox</li>
</ul>
</li>
<li><a href="http://www.quirksmode.org/compatibility.html" target="_blank">http://www.quirksmode.org/compatibility.html</a> – “Compatibility Master Table”
<ul>
<li>The holy grail of browser compatibility information. Seriously… Want to know if a browser fully supports CSS2, CSS3, DOM, etc? It’s here.</li>
</ul>
</li>
<li><a title="http://reference.sitepoint.com/" href="http://reference.sitepoint.com/" target="_blank">http://reference.sitepoint.com/</a> – “CSS/HTML/JavaScript Reference”
<ul>
<li>Reference site for CSS, HTML, and JavaScript information. Its got a clean layout and additionally contains browser compatibility information for each of the items.</li>
</ul>
</li>
<li><a href="http://blogs.msdn.com/ie/archive/2009/03/12/site-compatibility-and-ie8.aspx" target="_blank">http://blogs.msdn.com/ie/archive/2009/03/12/site-compatibility-and-ie8.aspx</a> – “Site Compatibility and IE8”
<ul>
<li>A page detailing potential issues and fixes for making your pages compatible with IE8 in Standards Mode. This is actually a good reference for potential cross browser problems as most of the items listed are cross browser compatibility issues as well.</li>
</ul>
</li>
</ul>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Retroactive%20Browser%20Compatibility&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility&amp;bodytext=When%20working%20on%20an%20existing%20web%20application%20you%20may%20be%20placed%20in%20a%20situation%20where%20you%20need%20to%20support%20new%20browsers%2C%20or%20just%20other%20browsers%20that%20your%20app%20wasn%E2%80%99t%20originally%20coded%20for%20or%20tested%20in.%20In%20my%20case%2C%20this%20took%20the%20form%20of%20a%20web%20app%20develope" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility&amp;notes=When%20working%20on%20an%20existing%20web%20application%20you%20may%20be%20placed%20in%20a%20situation%20where%20you%20need%20to%20support%20new%20browsers%2C%20or%20just%20other%20browsers%20that%20your%20app%20wasn%E2%80%99t%20originally%20coded%20for%20or%20tested%20in.%20In%20my%20case%2C%20this%20took%20the%20form%20of%20a%20web%20app%20develope" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=When%20working%20on%20an%20existing%20web%20application%20you%20may%20be%20placed%20in%20a%20situation%20where%20you%20need%20to%20support%20new%20browsers%2C%20or%20just%20other%20browsers%20that%20your%20app%20wasn%E2%80%99t%20originally%20coded%20for%20or%20tested%20in.%20In%20my%20case%2C%20this%20took%20the%20form%20of%20a%20web%20app%20develope" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;t=Retroactive%20Browser%20Compatibility" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Retroactive%20Browser%20Compatibility%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility&amp;annotation=When%20working%20on%20an%20existing%20web%20application%20you%20may%20be%20placed%20in%20a%20situation%20where%20you%20need%20to%20support%20new%20browsers%2C%20or%20just%20other%20browsers%20that%20your%20app%20wasn%E2%80%99t%20originally%20coded%20for%20or%20tested%20in.%20In%20my%20case%2C%20this%20took%20the%20form%20of%20a%20web%20app%20develope" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F04%2F19%2Fretroactive-browser-compatibility%2F&amp;title=Retroactive%20Browser%20Compatibility" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/04/19/retroactive-browser-compatibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making ReSharper Play Nice With StyleCop</title>
		<link>http://danrigby.com/2009/01/23/making-resharper-play-nice-with-stylecop/</link>
		<comments>http://danrigby.com/2009/01/23/making-resharper-play-nice-with-stylecop/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 17:10:19 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[ReSharper]]></category>
		<category><![CDATA[StyleCop]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=186</guid>
		<description><![CDATA[I&#8217;ve been toying with StyleCop more and more as of late and ran into some situations where ReSharper and StyleCop were fighting each other over code formatting issues. Some manual tweaking reduced the problems, but it got me curious. So I did some research and uncovered a wonderful tool, StyleCop for ReSharper. StyleCop for ReSharper [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been toying with StyleCop more and more as of late and ran into some situations where ReSharper and StyleCop were fighting each other over code formatting issues. Some manual tweaking reduced the problems, but it got me curious. So I did some research and uncovered a wonderful tool, <strong><a href="http://www.codeplex.com/StyleCopForReSharper" target="_blank">StyleCop for ReSharper</a></strong>.</p>
<blockquote><p>StyleCop for ReSharper is a ReSharper 4.1 plug-in that allows Microsoft StyleCop to be run as you type, generating real-time syntax highlighting of violations. StyleCop for ReSharper also contains a collection of Quick-Fixes and Code Clean-Up Modules to help you easily fix StyleCop code styling violations.</p></blockquote>
<p>StyleCop for ReSharper also comes with a ReSharper Code Style Settings File which you can import into ReSharper to make ReSharper&#8217;s auto formatting features compliant with StyleCop&#8217;s recommendations. If you don&#8217;t want to import a whole code style settings file and would rather just tweak some specific formatting settings that are responsible for most of StyleCop&#8217;s complaints about ReSharper, I recommend reading these 2 blog posts at <a href="http://www.hockblogs.net/" target="_blank">Hock Blogs</a>:</p>
<ul>
<li><a href="http://www.hockblogs.net/post/2008/10/4-great-Resharper-tips-for-use-with-StyleCop!.aspx" target="_blank">http://www.hockblogs.net/post/2008/10/4-great-Resharper-tips-for-use-with-StyleCop!.aspx</a></li>
<li><a href="http://www.hockblogs.net/post/2008/11/Another-set-of-great-Resharper-tips-for-use-with-StyleCop!.aspx" target="_blank">http://www.hockblogs.net/post/2008/11/Another-set-of-great-Resharper-tips-for-use-with-StyleCop!.aspx</a></li>
</ul>
<p>Navigating around the <a href="http://www.codeplex.com/StyleCopForReSharper" target="_blank">StyleCop</a><a href="http://www.codeplex.com/StyleCopForReSharper" target="_blank"> for </a><a href="http://www.codeplex.com/StyleCopForReSharper" target="_blank">ReSharper</a><a href="http://www.codeplex.com/StyleCopForReSharper" target="_blank"> project page</a> on CodePlex also turns up a lot of additional useful information:</p>
<ul>
<li><a href="http://www.codeplex.com/StyleCopForReSharper/Wiki/View.aspx?title=Fixes&amp;referringTitle=Home" target="_blank">List of all the fixes currently in StyleCop for Resharper</a></li>
<li><a href="http://www.codeplex.com/StyleCopForReSharper/Wiki/View.aspx?title=ConfiguringStyleCopFriendlyCodeCleanUpSettings&amp;referringTitle=Home" target="_blank">Configuring StyleCop Friendly Code Clean-Up Settings</a></li>
<li><a href="http://www.codeplex.com/StyleCopForReSharper/Wiki/View.aspx?title=Contributing&amp;referringTitle=Home" target="_blank">Configuring a Company Name for StyleCop File Header</a></li>
<li><a href="http://www.codeplex.com/StyleCopForReSharper/Wiki/View.aspx?title=ConfigureInspectionSeverity&amp;referringTitle=Home" target="_blank">Configuring Inspection Severity for StyleCop Warnings</a></li>
</ul>
<p>All in all, I&#8217;m enjoying this ReSharper plug-in. It has taken a lot of the pain out of being compliant with StyleCop&#8217;s rules.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Making%20ReSharper%20Play%20Nice%20With%20StyleCop&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F&amp;title=Making%20ReSharper%20Play%20Nice%20With%20StyleCop" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F&amp;title=Making%20ReSharper%20Play%20Nice%20With%20StyleCop&amp;bodytext=I%27ve%20been%20toying%20with%20StyleCop%20more%20and%20more%20as%20of%20late%20and%20ran%20into%20some%20situations%20where%20ReSharper%20and%20StyleCop%20were%20fighting%20each%20other%20over%20code%20formatting%20issues.%20Some%20manual%20tweaking%20reduced%20the%20problems%2C%20but%20it%20got%20me%20curious.%20So%20I%20did%20some%20re" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F&amp;title=Making%20ReSharper%20Play%20Nice%20With%20StyleCop&amp;notes=I%27ve%20been%20toying%20with%20StyleCop%20more%20and%20more%20as%20of%20late%20and%20ran%20into%20some%20situations%20where%20ReSharper%20and%20StyleCop%20were%20fighting%20each%20other%20over%20code%20formatting%20issues.%20Some%20manual%20tweaking%20reduced%20the%20problems%2C%20but%20it%20got%20me%20curious.%20So%20I%20did%20some%20re" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F&amp;title=Making%20ReSharper%20Play%20Nice%20With%20StyleCop" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F&amp;title=Making%20ReSharper%20Play%20Nice%20With%20StyleCop&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=I%27ve%20been%20toying%20with%20StyleCop%20more%20and%20more%20as%20of%20late%20and%20ran%20into%20some%20situations%20where%20ReSharper%20and%20StyleCop%20were%20fighting%20each%20other%20over%20code%20formatting%20issues.%20Some%20manual%20tweaking%20reduced%20the%20problems%2C%20but%20it%20got%20me%20curious.%20So%20I%20did%20some%20re" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F&amp;t=Making%20ReSharper%20Play%20Nice%20With%20StyleCop" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Making%20ReSharper%20Play%20Nice%20With%20StyleCop%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F&amp;title=Making%20ReSharper%20Play%20Nice%20With%20StyleCop&amp;annotation=I%27ve%20been%20toying%20with%20StyleCop%20more%20and%20more%20as%20of%20late%20and%20ran%20into%20some%20situations%20where%20ReSharper%20and%20StyleCop%20were%20fighting%20each%20other%20over%20code%20formatting%20issues.%20Some%20manual%20tweaking%20reduced%20the%20problems%2C%20but%20it%20got%20me%20curious.%20So%20I%20did%20some%20re" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F23%2Fmaking-resharper-play-nice-with-stylecop%2F&amp;title=Making%20ReSharper%20Play%20Nice%20With%20StyleCop" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/23/making-resharper-play-nice-with-stylecop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unofficial JQuery 1.3 Visual Studio Intellisense File</title>
		<link>http://danrigby.com/2009/01/17/unofficial-jquery-13-visual-studio-intellisense-file/</link>
		<comments>http://danrigby.com/2009/01/17/unofficial-jquery-13-visual-studio-intellisense-file/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 03:02:09 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=155</guid>
		<description><![CDATA[In lieu of the official Visual Studio 2008 Intellisense file for jQuery, the jQuery intellisense file generator at http://www.infobasis.com/sandpit/jQuery-Intellisense/ has been updated to support jQuery 1.3.0 (See this post for more details). The will allow you to get proper jQuery 1.3 intellisense in your applications until the official version is released. The above linked script generator uses [...]]]></description>
			<content:encoded><![CDATA[<p>In lieu of the official Visual Studio 2008 Intellisense file for jQuery, the jQuery intellisense file generator at <a href="http://www.infobasis.com/sandpit/jQuery-Intellisense/" target="_blank">http://www.infobasis.com/sandpit/jQuery-Intellisense/</a> has been updated to support jQuery 1.3.0 (See <a href="http://blogs.ipona.com/james/archive/2009/01/14/jquery-1.3-and-visual-studio-2008-intellisense.aspx" target="_blank">this post</a> for more details). The will allow you to get proper jQuery 1.3 intellisense in your applications until the official version is released. The above linked script generator uses the official jQuery API documentation to build the intellisense file, so you don&#8217;t need to worry about it being inaccurate or imcomplete just because it&#8217;s not the &#8220;official&#8221; version.</p>
<p>Happy jQuerying!</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;bodytext=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;notes=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;t=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;annotation=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/17/unofficial-jquery-13-visual-studio-intellisense-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VS2008 SP1 Hotfix to Support &#8220;-vsdoc.js&#8221; IntelliSense Doc Files</title>
		<link>http://danrigby.com/2009/01/08/vs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files/</link>
		<comments>http://danrigby.com/2009/01/08/vs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 15:30:08 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://www.rigbyonline.net/?p=101</guid>
		<description><![CDATA[Back in October of last year Microsoft released Visual Studio 2008 SP1 which fixed intellisense support for several javascript libraries, including JQuery. In order to use this with jQuery though, it was necessary to download a seperate jQuery intellisense file and add references to it. If you wanted the intellisense in a js file, you&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>Back in October of last year Microsoft released Visual Studio 2008 SP1 which fixed intellisense support for several javascript libraries, including JQuery. In order to use this with jQuery though, it was necessary to download a seperate jQuery intellisense file and add references to it. If you wanted the intellisense in a js file, you&#8217;d reference it using a standard js reference like this:</p>
<pre class="brush: csharp;">/// &lt;reference path=&quot;MyIntellisenseFile.js&quot; /&gt;</pre>
<p>However, if you needed intellisense in an ASP.Net page, you needed to add the reference to the intellisense file in a server tag that would prevent it from being sent to the client, usually by wrapping the script reference tag like this:</p>
<pre class="brush: csharp;">&lt;% if(false) { %&gt;
&lt;script src=&quot;MyIntellisenseFile.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;% } %&gt;</pre>
<p>Unbeknowst to me, Last November the VS Web Tools team <a href="http://blogs.msdn.com/webdevtools/archive/2008/11/07/hotfix-to-enable-vsdoc-js-intellisense-doc-files-is-now-available.aspx" target="_blank">released a hotfix to VS 2008 SP1</a> that alleviates a lot of this trouble. Now all you have to do is just reference the jQuery library and have the intelisense file in the same directory following the naming convention of filename-vsdoc.js (e.g. if your jQuery file is named jQuery.js, your intellisense file would be named jQuery-vsdoc.js) and Visual Studio will automatically find the file and provide you with intellisense support. No more conditional ASP.Net server tags. Woo! The VS 2008 hotfix is currently <a href="http://code.msdn.microsoft.com/KB958502/Release/ProjectReleases.aspx?ReleaseId=1736" target="_blank">available on the MSDN Code Gallery</a>.</p>
<p>If you&#8217;re looking for the official Visual Studio intellisense file for jQuery, you can grab it from the <a href="http://docs.jquery.com/Downloading_jQuery" target="_blank">jQuery downloads page</a> (It&#8217;s found in the Current Release section). Thanks to <a href="http://www.devfish.net" target="_blank">Joe Healy</a> for pointing out to me that there was an official version.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;bodytext=Back%20in%20October%20of%20last%20year%20Microsoft%20released%20Visual%20Studio%202008%20SP1%20which%20fixed%20intellisense%20support%20for%20several%20javascript%20libraries%2C%20including%20JQuery.%20In%20order%20to%20use%20this%20with%20jQuery%20though%2C%20it%20was%20necessary%20to%20download%20a%20seperate%20jQuery%20intell" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;notes=Back%20in%20October%20of%20last%20year%20Microsoft%20released%20Visual%20Studio%202008%20SP1%20which%20fixed%20intellisense%20support%20for%20several%20javascript%20libraries%2C%20including%20JQuery.%20In%20order%20to%20use%20this%20with%20jQuery%20though%2C%20it%20was%20necessary%20to%20download%20a%20seperate%20jQuery%20intell" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=Back%20in%20October%20of%20last%20year%20Microsoft%20released%20Visual%20Studio%202008%20SP1%20which%20fixed%20intellisense%20support%20for%20several%20javascript%20libraries%2C%20including%20JQuery.%20In%20order%20to%20use%20this%20with%20jQuery%20though%2C%20it%20was%20necessary%20to%20download%20a%20seperate%20jQuery%20intell" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;t=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;annotation=Back%20in%20October%20of%20last%20year%20Microsoft%20released%20Visual%20Studio%202008%20SP1%20which%20fixed%20intellisense%20support%20for%20several%20javascript%20libraries%2C%20including%20JQuery.%20In%20order%20to%20use%20this%20with%20jQuery%20though%2C%20it%20was%20necessary%20to%20download%20a%20seperate%20jQuery%20intell" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/08/vs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slide deck for my JaxDug Session</title>
		<link>http://danrigby.com/2008/10/01/slide-deck-for-my-jaxdug-session/</link>
		<comments>http://danrigby.com/2008/10/01/slide-deck-for-my-jaxdug-session/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 20:17:52 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://www.rigbyonline.net/?p=86</guid>
		<description><![CDATA[My the slide show for my session today can be downloaded here: Free Developer Tools.pptx It&#8217;s in PowerPoint 2007 format, so if you don&#8217;t have PowerPoint 2007 installed, you can download the viewer here: http://www.microsoft.com/downloads/details.aspx?familyid=048dc840-14e1-467d-8dca-19d2a8fd7485&#38;displaylang=en Thanks to all who attended!]]></description>
			<content:encoded><![CDATA[<p>My the slide show for my session today can be downloaded here:</p>
<p><a href="http://www.rigbyonline.net/wp-content/uploads/2008/10/free-developer-tools.pptx"></a><a href="http://www.rigbyonline.net/wp-content/uploads/2008/10/free-developer-tools.pptx">Free Developer Tools.pptx</a></p>
<p>It&#8217;s in PowerPoint 2007 format, so if you don&#8217;t have PowerPoint 2007 installed, you can download the viewer here:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=048dc840-14e1-467d-8dca-19d2a8fd7485&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?familyid=048dc840-14e1-467d-8dca-19d2a8fd7485&amp;displaylang=en</a></p>
<p>Thanks to all who attended!</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Slide%20deck%20for%20my%20JaxDug%20Session&amp;body=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F&amp;title=Slide%20deck%20for%20my%20JaxDug%20Session" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F&amp;title=Slide%20deck%20for%20my%20JaxDug%20Session&amp;bodytext=My%20the%20slide%20show%20for%20my%20session%20today%20can%20be%20downloaded%20here%3A%0D%0A%0D%0AFree%20Developer%20Tools.pptx%0D%0A%0D%0AIt%27s%20in%20PowerPoint%202007%20format%2C%20so%20if%20you%20don%27t%20have%20PowerPoint%202007%20installed%2C%20you%20can%20download%20the%20viewer%20here%3A%0D%0A%0D%0Ahttp%3A%2F%2Fwww.microsoft.com%2Fdownloads%2Fdet" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F&amp;title=Slide%20deck%20for%20my%20JaxDug%20Session&amp;notes=My%20the%20slide%20show%20for%20my%20session%20today%20can%20be%20downloaded%20here%3A%0D%0A%0D%0AFree%20Developer%20Tools.pptx%0D%0A%0D%0AIt%27s%20in%20PowerPoint%202007%20format%2C%20so%20if%20you%20don%27t%20have%20PowerPoint%202007%20installed%2C%20you%20can%20download%20the%20viewer%20here%3A%0D%0A%0D%0Ahttp%3A%2F%2Fwww.microsoft.com%2Fdownloads%2Fdet" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F&amp;title=Slide%20deck%20for%20my%20JaxDug%20Session" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F&amp;title=Slide%20deck%20for%20my%20JaxDug%20Session&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=My%20the%20slide%20show%20for%20my%20session%20today%20can%20be%20downloaded%20here%3A%0D%0A%0D%0AFree%20Developer%20Tools.pptx%0D%0A%0D%0AIt%27s%20in%20PowerPoint%202007%20format%2C%20so%20if%20you%20don%27t%20have%20PowerPoint%202007%20installed%2C%20you%20can%20download%20the%20viewer%20here%3A%0D%0A%0D%0Ahttp%3A%2F%2Fwww.microsoft.com%2Fdownloads%2Fdet" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F&amp;t=Slide%20deck%20for%20my%20JaxDug%20Session" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Slide%20deck%20for%20my%20JaxDug%20Session%20-%20http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F&amp;title=Slide%20deck%20for%20my%20JaxDug%20Session&amp;annotation=My%20the%20slide%20show%20for%20my%20session%20today%20can%20be%20downloaded%20here%3A%0D%0A%0D%0AFree%20Developer%20Tools.pptx%0D%0A%0D%0AIt%27s%20in%20PowerPoint%202007%20format%2C%20so%20if%20you%20don%27t%20have%20PowerPoint%202007%20installed%2C%20you%20can%20download%20the%20viewer%20here%3A%0D%0A%0D%0Ahttp%3A%2F%2Fwww.microsoft.com%2Fdownloads%2Fdet" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F10%2F01%2Fslide-deck-for-my-jaxdug-session%2F&amp;title=Slide%20deck%20for%20my%20JaxDug%20Session" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2008/10/01/slide-deck-for-my-jaxdug-session/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personal Updates, VS2008/.NET 3.5 SP1 Information, and much more&#8230;</title>
		<link>http://danrigby.com/2008/08/26/personal-updates-and-net-35-sp1-information-and-more/</link>
		<comments>http://danrigby.com/2008/08/26/personal-updates-and-net-35-sp1-information-and-more/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 02:01:46 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://www.rigbyonline.net/?p=78</guid>
		<description><![CDATA[Sorry for the long delay between posts, a lot has been going on in my world as of late. Here&#8217;s a quick run down of the recent personal events that have kept me busy (and postless): I was promoted to &#8220;Software Engineer II&#8221;. I got married (I love you Erika!). The wedding was wonderful. Many [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the long delay between posts, a lot has been going on in my world as of late. Here&#8217;s a quick run down of the recent personal events that have kept me busy (and postless):</p>
<ul>
<li>I was promoted to &#8220;Software Engineer II&#8221;.</li>
<li>I got married (I love you Erika!). The wedding was wonderful. Many thanks to all who were in attendance.</li>
<li>Spent a week on honeymoon in Seattle, Washington and Vancouver, Canada (4 days and 3 days respectively).</li>
</ul>
<p>So, enough of the mushy stuff.</p>
<p>This last Saturday was the <strong>Jacksonville Code Camp</strong> and it was a very nice event despite the last minute change in location due to after effects of Tropical Storm Fay. There were a lot of great sessions and the speakers all did a great job. (I even won a copy of CodeSmith Professional Tools in the raffle&#8230; woot!) This was my second year in attendance.</p>
<p>For those in the Jacksonville area, the <strong>Jacksonville Developers User Group</strong> website can be found at <a href="http://www.jaxdug.com/" target="_blank">http://www.jaxdug.com/</a> and contains information on Jacksonville area Developer events. I have agreed to do <strong>my first user group talk</strong> in October and well be covering what free tools are available to make .Net developers&#8217; lives easier. (I will be posting the slides here on my site afterward.)</p>
<p><strong>VS2008 &amp; .NET 3.5 SP1 Fun!:</strong> Service Pack 1 for Microsoft .NET 3.5 and Service Pack 1 for Visual Studio 2008 have been released! (<em>about a week ago&#8230;</em>) Information on the updates included with the service packs can be found <a href="http://msdn.microsoft.com/en-us/vstudio/products/cc533447.aspx" target="_blank">here</a>, and for the impatient, you can download the service packs directly from <a href="http://msdn.microsoft.com/en-us/vstudio/cc533448.aspx" target="_blank">here</a>. If you have trouble with the installation of the service packs, try running the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=A494B0E0-EB07-4FF1-A21C-A4663E456D9D&amp;displaylang=en" target="_blank">Visual Studio 2008 Service Pack Preparation Tool</a>. Microsoft has also released the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=355c80e9-fde0-4812-98b5-8a03f5874e96&amp;displaylang=en" target="_blank">Framework 3.5 Enhancements Training Kit</a> which has even more information about the new features in the service packs and how to use them (This is in addition to the regular <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8BDAA836-0BBA-4393-94DB-6C3C4A0C98A1&amp;displaylang=en" target="_blank">Visual Studio 2008 &amp; .NET 3.5 Training Kit</a>.) Another important release that got lost a little in the hype over .NET 3.5 SP1/VS2008 SP1 is the release of <a href="http://www.microsoft.com/sqlserver/2008/en/us/default.aspx" target="_blank">SQL Server 2008</a>. This includes SQL Server 2008 Express Edition which you can grab <a href="http://www.microsoft.com/express/sql/default.aspx" target="_blank">here</a> for those interested.</p>
<p>Now if that wasn&#8217;t enough for one post&#8230;. on with the show!</p>
<p><strong>XAMLPad 4.0</strong> has been <a href="http://blogs.msdn.com/llobo/archive/2008/08/25/xamlpadx-4-0.aspx" target="_blank">released</a> and can be downloaded from <a href="http://blogs.msdn.com/llobo/attachment/8772446.ashx" target="_blank">here</a>. But wait.. what is XAMLPad?:</p>
<p>&#8220;XamlPad (xamlpad.exe) is a basic visual editor for Extensible Application Markup Language (XAML). XAMLPad is installed with the SDK and can be found from the start menu at All Programs/Microsoft Windows SDK/Tools/XAMLPad. &#8221;</p>
<p>While you&#8217;re downloading XAMLPad, be sure to grab <a href="http://www.linqpad.net/" target="_blank">LINQPad</a> if you don&#8217;t already have it.</p>
<p>And there&#8217;s still more&#8230;<br />
<strong>NHibernate 2.0 Final</strong> has also been <a href="http://ayende.com/Blog/archive/2008/08/23/NHibernate-2.0-Final-is-out.aspx" target="_blank">released</a>! It can be downloaded <a href="https://sourceforge.net/project/showfiles.php?group_id=73818&amp;package_id=73969" target="_blank">here</a>. And while the main NHibernate page doesn&#8217;t have the link up yet, the release notes for this release can be found <a href="http://sourceforge.net/project/shownotes.php?group_id=73818&amp;release_id=621482" target="_blank">here</a>.</p>
<p>Finally, bringing up the rear on the notable release train is the official release of <strong>Microsoft Live Labs <a href="http://photosynth.net/Default.aspx" target="_blank">Photosynth</a></strong>. If you&#8217;re not familiar with Microsoft&#8217;s Photosynth technology, <a href="http://photosynth.net/about.aspx" target="_blank">Photosynth&#8217;s About Page</a> and this <a href="http://news.cnet.com/8301-17939_109-10020637-2.html?hhTest=1&amp;part=rss&amp;subj=news&amp;tag=2547-1_3-0-20" target="_blank">CNET Article</a> about the launch should give you a good head start.</p>
<p>My very last news item for today (I promise!) is that Sara Ford has <a href="http://blogs.msdn.com/saraford/archive/2008/08/11/microsoft-visual-studio-tips-helps-katrina-survivors-rebuild-lives.aspx" target="_blank">announced the pre-sale of her first book</a>, &#8220;<strong>Visual Studio Tips: 251 Ways to Improve Your Productivity</strong>&#8220;. If you&#8217;re not familiar with Sara Ford and <a href="http://blogs.msdn.com/saraford/default.aspx" target="_blank">her blog</a>&#8230; then you have a lot of reading to do&#8230; Sara has an almost daily piece of information about Visual Studio IDE and its various components. Well worth the read if you can squeeze just one more item into your daily blog diet.</p>
<p>Wooo! Hows that for an &#8220;I&#8217;m not dead, just busy&#8221; post! (-;</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;body=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more..." title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;bodytext=Sorry%20for%20the%20long%20delay%20between%20posts%2C%20a%20lot%20has%20been%20going%20on%20in%20my%20world%20as%20of%20late.%20Here%27s%20a%20quick%20run%20down%20of%20the%20recent%20personal%20events%20that%20have%20kept%20me%20busy%20%28and%20postless%29%3A%0D%0A%0D%0A%09I%20was%20promoted%20to%20%22Software%20Engineer%20II%22.%0D%0A%09I%20got%20married%20%28I%20love" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;notes=Sorry%20for%20the%20long%20delay%20between%20posts%2C%20a%20lot%20has%20been%20going%20on%20in%20my%20world%20as%20of%20late.%20Here%27s%20a%20quick%20run%20down%20of%20the%20recent%20personal%20events%20that%20have%20kept%20me%20busy%20%28and%20postless%29%3A%0D%0A%0D%0A%09I%20was%20promoted%20to%20%22Software%20Engineer%20II%22.%0D%0A%09I%20got%20married%20%28I%20love" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more..." title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=Sorry%20for%20the%20long%20delay%20between%20posts%2C%20a%20lot%20has%20been%20going%20on%20in%20my%20world%20as%20of%20late.%20Here%27s%20a%20quick%20run%20down%20of%20the%20recent%20personal%20events%20that%20have%20kept%20me%20busy%20%28and%20postless%29%3A%0D%0A%0D%0A%09I%20was%20promoted%20to%20%22Software%20Engineer%20II%22.%0D%0A%09I%20got%20married%20%28I%20love" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;t=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more..." title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...%20-%20http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;annotation=Sorry%20for%20the%20long%20delay%20between%20posts%2C%20a%20lot%20has%20been%20going%20on%20in%20my%20world%20as%20of%20late.%20Here%27s%20a%20quick%20run%20down%20of%20the%20recent%20personal%20events%20that%20have%20kept%20me%20busy%20%28and%20postless%29%3A%0D%0A%0D%0A%09I%20was%20promoted%20to%20%22Software%20Engineer%20II%22.%0D%0A%09I%20got%20married%20%28I%20love" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more..." title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2008/08/26/personal-updates-and-net-35-sp1-information-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic Code Regions, Virtual Earth Controls, and Vista Performance Tweaks, Oh My!</title>
		<link>http://danrigby.com/2008/07/29/automatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my/</link>
		<comments>http://danrigby.com/2008/07/29/automatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 00:36:38 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.rigbyonline.net/?p=76</guid>
		<description><![CDATA[I do like to point out neat things when I come across them, so I&#8217;d like to bring your attention to some useful resources I stumbled across today: Windows Vista Performance and Tuning Guide &#8220;Windows Vista and SP1 focus on delivering greater performance and overall system responsiveness. By striking a balance between speed and responsiveness, [...]]]></description>
			<content:encoded><![CDATA[<p>I do like to point out neat things when I come across them, so I&#8217;d like to bring your attention to some useful resources I stumbled across today:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=ab377598-a637-432c-a3c8-1607ab629201&amp;displaylang=en" target="_blank"><span style="text-decoration: underline;">Windows Vista Performance and Tuning Guide</span></a><br />
&#8220;Windows Vista and SP1 focus on delivering greater performance and overall system responsiveness. By striking a balance between speed and responsiveness, Windows Vista and SP1 deliver a level of performance that has the greatest positive impact on the system’s usability.This guide looks at the following areas of performance improvement&#8230;&#8221;</p>
<p><a href="http://channel9.msdn.com/posts/Mark+Brown/Virtual-Earth-ASPNET-Control-CTP-Release/" target="_blank"><span style="text-decoration: underline;">Virtual Earth ASP.NET Control &#8211; CTP Release</span></a><br />
&#8220;Finally at long last we have released the Virtual Earth ASP.NET control (CTP Release). I spent a few minutes with Angus Logan from the Windows Live Platform Team to show off the control and give a quick demo to get you started. &#8230;&#8221;</p>
<p><a href="http://www.rauchy.net/regionerate/2007/06/regionerate-101.html" target="_blank"><span style="text-decoration: underline;">Regionerate &#8211; Automatic layout enforcement tool for C#</span></a><br />
&#8220;Regionerate (pronounced ri-jeh-neh-rate) is a new open-source tool for developers and team leaders that allows you to automatically apply layout rules on C# code. &#8230;&#8221;</p>
<p>Today&#8217;s links courtesy of the <a href="http://channel9.msdn.com/" target="_blank">Channel 9 Blog</a> and <a href="http://coolthingoftheday.blogspot.com/" target="_blank">Greg&#8217;s Cool Thing of the Day</a>.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21&amp;body=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F&amp;title=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F&amp;title=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21&amp;bodytext=I%20do%20like%20to%20point%20out%20neat%20things%20when%20I%20come%20across%20them%2C%20so%20I%27d%20like%20to%20bring%20your%20attention%20to%20some%20useful%20resources%20I%20stumbled%20across%20today%3A%0D%0A%0D%0AWindows%20Vista%20Performance%20and%20Tuning%20Guide%0D%0A%22Windows%20Vista%20and%20SP1%20focus%20on%20delivering%20greater%20perfor" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F&amp;title=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21&amp;notes=I%20do%20like%20to%20point%20out%20neat%20things%20when%20I%20come%20across%20them%2C%20so%20I%27d%20like%20to%20bring%20your%20attention%20to%20some%20useful%20resources%20I%20stumbled%20across%20today%3A%0D%0A%0D%0AWindows%20Vista%20Performance%20and%20Tuning%20Guide%0D%0A%22Windows%20Vista%20and%20SP1%20focus%20on%20delivering%20greater%20perfor" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F&amp;title=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F&amp;title=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=I%20do%20like%20to%20point%20out%20neat%20things%20when%20I%20come%20across%20them%2C%20so%20I%27d%20like%20to%20bring%20your%20attention%20to%20some%20useful%20resources%20I%20stumbled%20across%20today%3A%0D%0A%0D%0AWindows%20Vista%20Performance%20and%20Tuning%20Guide%0D%0A%22Windows%20Vista%20and%20SP1%20focus%20on%20delivering%20greater%20perfor" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F&amp;t=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21%20-%20http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F&amp;title=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21&amp;annotation=I%20do%20like%20to%20point%20out%20neat%20things%20when%20I%20come%20across%20them%2C%20so%20I%27d%20like%20to%20bring%20your%20attention%20to%20some%20useful%20resources%20I%20stumbled%20across%20today%3A%0D%0A%0D%0AWindows%20Vista%20Performance%20and%20Tuning%20Guide%0D%0A%22Windows%20Vista%20and%20SP1%20focus%20on%20delivering%20greater%20perfor" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F07%2F29%2Fautomatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my%2F&amp;title=Automatic%20Code%20Regions%2C%20Virtual%20Earth%20Controls%2C%20and%20Vista%20Performance%20Tweaks%2C%20Oh%20My%21" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2008/07/29/automatic-code-regions-virtual-earth-controls-and-vista-performance-tweaks-oh-my/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
