<?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>Trent Jones &#187; Dont Forget</title>
	<atom:link href="http://www.trentjones.net/index.php/category/dont-forget/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.trentjones.net</link>
	<description>DoSomething();</description>
	<lastBuildDate>Mon, 15 Mar 2010 19:27:32 +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>Opening Test Results Pane in Visual Studio Error</title>
		<link>http://www.trentjones.net/index.php/2010/02/opening-test-results-pane-in-visual-studio-error/</link>
		<comments>http://www.trentjones.net/index.php/2010/02/opening-test-results-pane-in-visual-studio-error/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 21:23:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dont Forget]]></category>

		<guid isPermaLink="false">http://www.trentjones.net/?p=182</guid>
		<description><![CDATA[Attempting to either run a unit test or open the Test Results pane in Visual Studio 2008 generates the following error on my machine: &#8220;Exception has been thrown by the target of an invocation&#8221; Following these instructions i have gotten around the issue. Sometimes I had to shut down a couple times and potentially be [...]]]></description>
			<content:encoded><![CDATA[<p>Attempting to either run a unit test or open the Test Results pane in Visual Studio 2008 generates the following error on my machine:</p>
<p>&#8220;Exception has been thrown by the target of an invocation&#8221;</p>
<p>Following these instructions i have gotten around the issue.  Sometimes I had to shut down a couple times and potentially be on the Team Explorer pane.</p>
<p>1.       Close all the instances of Visual Studio<br />
2.       Open a VS (Without opening the solution).<br />
3.       Go to Test -> Windows -> Test Results.<br />
4.       Now open the solution and vsmdi.<br />
5.       Tests would run as usual</p>
<p>/via http://social.msdn.microsoft.com/Forums/en/vstsprofiler/thread/8bd8da75-76d2-4257-aeee-d040e6167bf9</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trentjones.net/index.php/2010/02/opening-test-results-pane-in-visual-studio-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharepoint Central Administration Page not responding</title>
		<link>http://www.trentjones.net/index.php/2009/11/sharepoint-central-administration-page-not-responding/</link>
		<comments>http://www.trentjones.net/index.php/2009/11/sharepoint-central-administration-page-not-responding/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 21:29:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dont Forget]]></category>
		<category><![CDATA[Note to self]]></category>

		<guid isPermaLink="false">http://www.trentjones.net/index.php/2009/11/sharepoint-central-administration-page-not-responding/</guid>
		<description><![CDATA[In Windows 2008 Server removing the DynamicIpRestrictionModule will allow the page to work.]]></description>
			<content:encoded><![CDATA[<p>In Windows 2008 Server removing the DynamicIpRestrictionModule will allow the page to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trentjones.net/index.php/2009/11/sharepoint-central-administration-page-not-responding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE and ContentEditable Attribute</title>
		<link>http://www.trentjones.net/index.php/2009/09/ie-and-contenteditable-attribute/</link>
		<comments>http://www.trentjones.net/index.php/2009/09/ie-and-contenteditable-attribute/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 15:48:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dont Forget]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.trentjones.net/?p=153</guid>
		<description><![CDATA[Ran into an issue today using jQuery with IE and setting ContentEditable=&#8217;true&#8217; on a click command. First I created a div with ContentEditable set to true without jquery and ran it in IE. Ok, it&#8217;s working. Now to try and add the attribute dynamically. I removed the attribute and replaced it with this bit of [...]]]></description>
			<content:encoded><![CDATA[<p>Ran into an issue today using jQuery with IE and setting ContentEditable=&#8217;true&#8217; on a click command.  First I created a div with ContentEditable set to true without jquery and ran it in IE. Ok, it&#8217;s working.  Now to try and add the attribute dynamically.  I removed the attribute and replaced it with this bit of javascript:</p>
<pre class="brush: js;">
$(function(){
$("#test").click(function() {
$(this).attr({ ContentEditable: "true" });
});
});
</pre>
<p>This did not work.  Even though IE would allow the Cap &#8220;C&#8221; to set to true without jQuery, it would not work in doing so dynamically.  Changing to:</p>
<pre class="brush: js;">
$(function(){
$("#test").click(function() {
$(this).attr({ contentEditable: "true" });
});
});
</pre>
<p>Works perfectly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.trentjones.net/index.php/2009/09/ie-and-contenteditable-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
