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

<channel>
	<title>Paul Nieuwelaar</title>
	<atom:link href="http://paulnieuwelaar.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://paulnieuwelaar.wordpress.com</link>
	<description>Microsoft Dynamics CRM and .NET Developer</description>
	<lastBuildDate>Fri, 16 Dec 2011 10:38:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='paulnieuwelaar.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Paul Nieuwelaar</title>
		<link>http://paulnieuwelaar.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://paulnieuwelaar.wordpress.com/osd.xml" title="Paul Nieuwelaar" />
	<atom:link rel='hub' href='http://paulnieuwelaar.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Dynamics CRM 2011 Calling OnKeyDown With Javascript</title>
		<link>http://paulnieuwelaar.wordpress.com/2011/05/22/dynamics-crm-2011-calling-onkeydown-with-javascript/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2011/05/22/dynamics-crm-2011-calling-onkeydown-with-javascript/#comments</comments>
		<pubDate>Sun, 22 May 2011 01:49:27 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Dynamics CRM 2011]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.wordpress.com/?p=1307</guid>
		<description><![CDATA[Recently I have been working on a solution in Dynamics CRM 2011, which required me to store and display the characters remaining in a text field, as the user is typing into the field.  This ‘Characters Remaining’ field needed to be live updating every time someone enters a character into the text field, so using [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1307&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Recently I have been working on a solution in Dynamics CRM 2011, which required me to store and display the characters remaining in a text field, as the user is typing into the field.  This ‘Characters Remaining’ field needed to be live updating every time someone enters a character into the text field, so using the standard methods of ‘onChange’ would not quite work, as it would only update once you click out of the field.</p>
<p style="text-align:center;"><a href="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-1.jpg"><img class="alignnone size-full wp-image-1309" title="Calling JavaScript on Key Press of a Dynamics CRM 1" src="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-1.jpg?w=614" alt=""   /></a></p>
<p style="text-align:justify;">There were a few ‘Gotchas’ that I encountered while attempting this seemingly simple task. But before I got to any of those, I first got the JScript working on the fields onchange, so that when someone clicks out of the text box after entering data, the Characters Remaining field will be set to 100 minus the field values length. This was easily achieved using the following JScript, with the ‘keyPress’ function being called onchange on the text field.</p>
<p><span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">function</span> keyPress() {<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> charRemaining = Xrm.Page.getAttribute(&#8220;mag_charactersremaining&#8221;);<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> message = Xrm.Page.getAttribute(&#8220;description&#8221;);<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> messageVal = message.getValue();<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> maxLength = 100;<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">if</span> (messageVal != <span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">null</span>) {<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> msgLength = messageVal.length;<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> remaining = maxLength &#8211; msgLength;<br />
charRemaining.setValue(remaining);<br />
}<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">else</span> {<br />
charRemaining.setValue(maxLength);<br />
}<br />
}</p>
<p><em><strong>Note:</strong> WordPress formats code weird, to download all code used in this blog post <a href="http://paulnieuwelaar.files.wordpress.com/2011/05/onkeydowncode.doc">click here</a>.</em></p>
<p style="text-align:justify;">In this example, the <strong>charRemaining</strong> variable sets the ‘Characters Remaining’ field, and the <strong>message</strong> variable sets the name of the text field we’re entering data into. Also the <strong>maxLength</strong> variable sets the starting value of the Characters Remaining field (this will be what it counts down from, in this case 100).</p>
<p style="text-align:center;"><a href="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-2.jpg"><img class="alignnone size-full wp-image-1310" title="Calling JavaScript on Key Press of a Dynamics CRM 2" src="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-2.jpg?w=614" alt=""   /></a></p>
<p style="text-align:justify;">So using this alone works well, however it doesn’t work each time we type a character, which is what we want to happen. So to do this we need to call the function above when a character is typed within our text field. I eventually found the following line of code which will fire the ‘keyPress’ function when a key is pressed inside the text field.</p>
<p style="padding-left:30px;">document.getElementById(&#8220;description&#8221;).onkeypress = keyPress;</p>
<p style="text-align:justify;">However this was where the first ‘gotcha’ happened. Although adding the above line of code to the onload event would fire the ‘keyPress’ function when a key was pressed, it would not include certain characters such as backspace, enter, or delete. Other options were using ‘onkeydown’ instead of ‘onkeypress’, although this didn’t quite work as expected either, as it was only called when the next key was pressed, where as we wanted to fire when the current key was pressed. So instead we used ‘onkeyup’ which did the job, although using this method didn’t fire the event until the key was released, so if you held down a key it wouldn’t change the Characters Remaining until you released that key. After a bit of testing, I found that adding 2 separate lines for ‘onkeyup’ and ‘onkeydown’ worked exactly how we wanted. The full function to call in the onload looks like this:</p>
<p><span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">function</span> onLoad() {<br />
document.getElementById(&#8220;description&#8221;).onkeyup = keyPress;<br />
document.getElementById(&#8220;description&#8221;).onkeydown = keyPress;<br />
}</p>
<p style="text-align:center;"> <a href="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-3.jpg"><img class="alignnone size-full wp-image-1311" title="Calling JavaScript on Key Press of a Dynamics CRM 3" src="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-3.jpg?w=614" alt=""   /></a></p>
<p style="text-align:justify;">While this was now firing the keyPress event correctly, the Characters Remaining wasn’t changing until you clicked out of the text field. I discovered this was because the ‘message length’ isn&#8217;t saved until you click out of the field. However I managed to find a work around for this. Instead of using ‘Xrm.Page.getAttribute’ to get the message field, I used ‘document.getElementById’. Which when used with message length got the current length of the field at the time.</p>
<p style="text-align:justify;">This was now working exactly as I wanted, the last step was to add the keyPress function to the onload, so that when the form loads, the Characters Remaining will be set to the correct amount. I’ve added the full JScript file below:</p>
<p><span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">function</span> keyPress() {<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> charRemaining = Xrm.Page.getAttribute(&#8220;mag_charactersremaining&#8221;);<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> message = document.getElementById(&#8220;description&#8221;);<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> messageVal = message.value;<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> maxLength = 100;<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">if</span> (messageVal != <span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">null</span>) {<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> msgLength = messageVal.length;<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">var</span> remaining = maxLength &#8211; msgLength;<br />
charRemaining.setValue(remaining);<br />
}<br />
<span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">else</span> {<br />
charRemaining.setValue(maxLength);<br />
}<br />
}</p>
<p><span style="line-height:115%;font-family:consolas;font-size:9.5pt;color:blue;">function</span> onLoad() {<br />
document.getElementById(&#8220;description&#8221;).onkeyup = keyPress;<br />
document.getElementById(&#8220;description&#8221;).onkeydown = keyPress;<br />
}</p>
<p style="text-align:center;"> <a href="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-4.jpg"><img class="alignnone size-full wp-image-1312" title="Calling JavaScript on Key Press of a Dynamics CRM 4" src="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-4.jpg?w=614" alt=""   /></a></p>
<p><a href="http://paulnieuwelaar.files.wordpress.com/2011/05/onkeydowncode.doc">Download</a> code used in this post (wordpress formats it weird).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/1307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/1307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/1307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/1307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/1307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/1307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/1307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/1307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/1307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/1307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/1307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/1307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/1307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/1307/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1307&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2011/05/22/dynamics-crm-2011-calling-onkeydown-with-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-1.jpg" medium="image">
			<media:title type="html">Calling JavaScript on Key Press of a Dynamics CRM 1</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-2.jpg" medium="image">
			<media:title type="html">Calling JavaScript on Key Press of a Dynamics CRM 2</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-3.jpg" medium="image">
			<media:title type="html">Calling JavaScript on Key Press of a Dynamics CRM 3</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2011/05/calling-javascript-on-key-press-of-a-dynamics-crm-4.jpg" medium="image">
			<media:title type="html">Calling JavaScript on Key Press of a Dynamics CRM 4</media:title>
		</media:content>
	</item>
		<item>
		<title>Update Rollup 17 for Microsoft Dynamics CRM 4.0 has been released</title>
		<link>http://paulnieuwelaar.wordpress.com/2011/05/07/update-rollup-17-for-microsoft-dynamics-crm-4-0-has-been-released/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2011/05/07/update-rollup-17-for-microsoft-dynamics-crm-4-0-has-been-released/#comments</comments>
		<pubDate>Sat, 07 May 2011 10:59:11 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Dynamics CRM 4.0]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.wordpress.com/?p=1303</guid>
		<description><![CDATA[Download UR 17 for Dynamics CRM 4.0 from here: http://www.microsoft.com/downloads/en/details.aspx?FamilyID=94fa9f74-f574-4c24-a42f-915f1a843f44&#38;displaylang=en<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1303&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Download UR 17 for Dynamics CRM 4.0 from here:<br />
<a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=94fa9f74-f574-4c24-a42f-915f1a843f44&amp;displaylang=en"> http://www.microsoft.com/downloads/en/details.aspx?FamilyID=94fa9f74-f574-4c24-a42f-915f1a843f44&amp;displaylang=en</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/1303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/1303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/1303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/1303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/1303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/1303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/1303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/1303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/1303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/1303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/1303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/1303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/1303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/1303/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1303&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2011/05/07/update-rollup-17-for-microsoft-dynamics-crm-4-0-has-been-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>
	</item>
		<item>
		<title>The Knowledge Base in Dynamics CRM 2011</title>
		<link>http://paulnieuwelaar.wordpress.com/2011/04/10/the-knowledge-base-in-dynamics-crm-2011/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2011/04/10/the-knowledge-base-in-dynamics-crm-2011/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 22:04:55 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Dynamics CRM 2011]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.wordpress.com/?p=1297</guid>
		<description><![CDATA[I&#8217;ve added links below to all my posts on the knowledge base in Dynamics CRM 2011. You should find everything Article related here. Where is the Knowledge Base in Dynamics CRM 2011? The Lifecycle of an Article in Dynamics CRM 2011 Creating an Article in Dynamics CRM 2011 Creating and Editing an Article Template in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1297&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve added links below to all my posts on the knowledge base in Dynamics CRM 2011. You should find everything Article related here.</p>
<p><a id="ctl00_MainBody_BlogPosts1_ctl00_ctl00_repeater_ctl02_fullContent1" href="http://www.magnetism.co.nz/blog/paul/11-02-23/Where_is_the_Knowledge_Base_in_Dynamics_CRM_2011.aspx">Where is the Knowledge Base in Dynamics CRM 2011?<br />
</a><a id="ctl00_MainBody_BlogPosts1_ctl00_ctl00_repeater_ctl01_fullContent1" href="http://www.magnetism.co.nz/blog/paul/11-02-25/The_Lifecycle_of_an_Article_in_Dynamics_CRM_2011.aspx">The Lifecycle of an Article in Dynamics CRM 2011<br />
</a><a name="prev" href="http://www.magnetism.co.nz/blog/paul/11-03-02/Creating_an_Article_in_Dynamics_CRM_2011.aspx">Creating an Article in Dynamics CRM 2011<br />
</a><a href="http://www.magnetism.co.nz/blog/paul/11-03-04/Creating_and_Editing_an_Article_Template_in_Dynamics_CRM_2011.aspx">Creating and Editing an Article Template in Dynamics CRM 2011<br />
</a><a id="ctl00_MainBody_BlogPosts1_ctl00_ctl00_repeater_ctl01_fullContent1" href="http://www.magnetism.co.nz/blog/paul/11-03-09/What_to_Check_for_when_Approving_an_Article_in_Dynamics_CRM_2011.aspx">What to Check for when Approving an Article in Dynamics CRM 2011<br />
</a><a href="http://www.magnetism.co.nz/blog/paul/11-03-14/Commenting_on_an_Article_in_Dynamics_CRM_2011.aspx">Commenting on an Article in Dynamics CRM 2011<br />
</a><a href="http://www.magnetism.co.nz/blog/paul/11-03-15/How_to_Insert_an_Image_into_your_Dynamics_CRM_Article.aspx">How to Insert an Image into your Dynamics CRM Article<br />
</a><a id="ctl00_MainBody_BlogPosts1_ctl00_ctl00_repeater_ctl01_fullContent1" href="http://www.magnetism.co.nz/blog/paul/11-03-23/Searching_for_Articles_in_Dynamics_CRM_2011.aspx">Searching for Articles in Dynamics CRM 2011<br />
</a><a id="ctl00_MainBody_BlogPosts1_ctl00_ctl00_repeater_ctl03_fullContent1" href="http://www.magnetism.co.nz/blog/paul/11-03-28/Customizing_an_Article_Form_in_Dynamics_CRM_2011.aspx">Customizing an Article Form in Dynamics CRM 2011<br />
</a><a id="ctl00_MainBody_BlogPosts1_ctl00_ctl00_repeater_ctl02_fullContent1" href="http://www.magnetism.co.nz/blog/paul/11-03-30/Inserting_a_Dynamics_CRM_2011_Article_into_an_Outlook_Email.aspx">Inserting a Dynamics CRM 2011 Article into an Outlook Email</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/1297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/1297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/1297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/1297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/1297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/1297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/1297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/1297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/1297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/1297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/1297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/1297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/1297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/1297/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1297&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2011/04/10/the-knowledge-base-in-dynamics-crm-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>
	</item>
		<item>
		<title>Update Rollup 1 for Microsoft Dynamics CRM 2011</title>
		<link>http://paulnieuwelaar.wordpress.com/2011/04/10/update-rollup-1-for-microsoft-dynamics-crm-2011/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2011/04/10/update-rollup-1-for-microsoft-dynamics-crm-2011/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 21:35:56 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Dynamics CRM 2011]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.wordpress.com/?p=1295</guid>
		<description><![CDATA[The first update rollup for Dynamics CRM 2011 has recently been released. To download and install the updates yourself use the following link: http://www.microsoft.com/downloads/en/details.aspx?FamilyID=8cd2384e-e06a-4cf1-800d-303aec37f40b Otherwise wait until the end of April and it will be available as a windows update. Also check out the KB Article describing the issues resolved: http://support.microsoft.com/default.aspx?kbid=2466084<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1295&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The first update rollup for Dynamics CRM 2011 has recently been released.</p>
<p>To download and install the updates yourself use the following link:<br />
<a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=8cd2384e-e06a-4cf1-800d-303aec37f40b">http://www.microsoft.com/downloads/en/details.aspx?FamilyID=8cd2384e-e06a-4cf1-800d-303aec37f40b</a></p>
<p>Otherwise wait until the end of April and it will be available as a windows update.</p>
<p>Also check out the KB Article describing the issues resolved:<br />
<a href="http://support.microsoft.com/default.aspx?kbid=2466084">http://support.microsoft.com/default.aspx?kbid=2466084 </a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/1295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/1295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/1295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/1295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/1295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/1295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/1295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/1295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/1295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/1295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/1295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/1295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/1295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/1295/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1295&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2011/04/10/update-rollup-1-for-microsoft-dynamics-crm-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>
	</item>
		<item>
		<title>Rollup 15 for Microsoft Dynamics CRM 4.0</title>
		<link>http://paulnieuwelaar.wordpress.com/2011/01/14/rollup-15-for-microsoft-dynamics-crm-4-0/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2011/01/14/rollup-15-for-microsoft-dynamics-crm-4-0/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 21:10:32 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Dynamics CRM 4.0]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.wordpress.com/?p=1289</guid>
		<description><![CDATA[Rollup 15 for Microsoft Dynamics CRM 4.0 has been released, download and install from Microsoft and get your system up to date. http://www.microsoft.com/downloads/details.aspx?FamilyID=A43147C9-E87E-41B3-BF46-AC1244A0475C&#38;amp;displaylang=ja&#38;displaylang=en<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1289&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Rollup 15 for Microsoft Dynamics CRM 4.0 has been released, download and install from Microsoft and get your system up to date.<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=A43147C9-E87E-41B3-BF46-AC1244A0475C&amp;displaylang=ja&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=A43147C9-E87E-41B3-BF46-AC1244A0475C&amp;amp;displaylang=ja&amp;displaylang=en</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/1289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/1289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/1289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/1289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/1289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/1289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/1289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/1289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/1289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/1289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/1289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/1289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/1289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/1289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=1289&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2011/01/14/rollup-15-for-microsoft-dynamics-crm-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>
	</item>
		<item>
		<title>paulnieuwelaar.com has a new website</title>
		<link>http://paulnieuwelaar.wordpress.com/2011/01/10/paulnieuwelaar-com-has-a-new-website/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2011/01/10/paulnieuwelaar-com-has-a-new-website/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 10:35:21 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.wordpress.com/?p=7</guid>
		<description><![CDATA[From now on paulnieuwelaar.com is no more, and the site will now be hosted on this site, paulnieuwelaar.wordpress.com. Same content, same author, new domain, new theme.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=7&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>From now on paulnieuwelaar.com is no more, and the site will now be hosted on this site, <a href="http://paulnieuwelaar.wordpress.com">paulnieuwelaar.wordpress.com</a>. Same content, same author, new domain, new theme.</p>
<div id="attachment_1286" class="wp-caption alignnone" style="width: 624px"><a href="http://paulnieuwelaar.files.wordpress.com/2011/01/oldsite.jpg"><img class="size-large wp-image-1286 " title="Old Site Theme" src="http://paulnieuwelaar.files.wordpress.com/2011/01/oldsite.jpg?w=614&#038;h=450" alt="" width="614" height="450" /></a><p class="wp-caption-text">Old Site Theme</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=7&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2011/01/10/paulnieuwelaar-com-has-a-new-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2011/01/oldsite.jpg?w=1024" medium="image">
			<media:title type="html">Old Site Theme</media:title>
		</media:content>
	</item>
		<item>
		<title>Desktop Shortcut to FTP via Windows Explorer</title>
		<link>http://paulnieuwelaar.wordpress.com/2010/12/04/desktop-shortcut-to-ftp-via-windows-explorer/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2010/12/04/desktop-shortcut-to-ftp-via-windows-explorer/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 02:02:18 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.com/?p=914</guid>
		<description><![CDATA[Here&#8217;s another obvious one that will save you lots of time accessing your FTP site. No more going through your browser, logging in, and then opening your FTP in Windows Explorer to get an easy to use folder view. For ages I&#8217;ve been doing exactly that, which is a pain to need to go through [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=914&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another obvious one that will save you lots of time accessing your FTP site. No more going through your browser, logging in, and then opening your FTP in Windows Explorer to get an easy to use folder view.</p>
<p>For ages I&#8217;ve been doing exactly that, which is a pain to need to go through all of that just to open your FTP site in windows explorer. I&#8217;ve discovered a much better way to access your FTP, so that all you need to do to open your FTP in windows explorer is open a shortcut on your desktop, no browsers or logging in required.</p>
<p>Recently someone showed me a way to log into an FTP site using just the URL, by simply entering the following into the internet browser:<br />
ftp://<em><strong>username</strong></em>:<em><strong>password</strong></em>@www.<em><strong>sitename</strong></em>.com</p>
<p>Give that a try with your ftp username and password, and site name. It will load your FTP and log you in.</p>
<p><img class="alignnone size-full wp-image-915" title="ftp1" src="http://paulnieuwelaar.files.wordpress.com/2010/12/ftp11.jpg?w=614" alt=""   /></p>
<p>This alone you could use to log in automatically, but we want it to open in windows explorer automatically as well.</p>
<p>So now if you copy that above address into your start menu search box, and wait for the one internet file to be found, you can hold Alt, and then drag that file to your desktop to create a shortcut.</p>
<p><a href="http://paulnieuwelaar.files.wordpress.com/2010/12/ftp21.jpg"><img class="alignnone size-full wp-image-916" title="ftp2" src="http://paulnieuwelaar.files.wordpress.com/2010/12/ftp21.jpg?w=614" alt=""   /></a></p>
<p>The link on your desktop will now open your FTP in windows explorer, and will log you in automatically every time.</p>
<p><a href="http://paulnieuwelaar.files.wordpress.com/2010/12/ftp31.jpg"><img class="alignnone size-full wp-image-917" title="ftp3" src="http://paulnieuwelaar.files.wordpress.com/2010/12/ftp31.jpg?w=614" alt=""   /></a></p>
<p>You can then rename it to something more meaningful, and then you&#8217;re set! No more using your browser to access your FTP, and no more needing to log in each time.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/914/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/914/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/914/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/914/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/914/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/914/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/914/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/914/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/914/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/914/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/914/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/914/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/914/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/914/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=914&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2010/12/04/desktop-shortcut-to-ftp-via-windows-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2010/12/ftp11.jpg" medium="image">
			<media:title type="html">ftp1</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2010/12/ftp21.jpg" medium="image">
			<media:title type="html">ftp2</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2010/12/ftp31.jpg" medium="image">
			<media:title type="html">ftp3</media:title>
		</media:content>
	</item>
		<item>
		<title>Making the Windows 7 Taskbar more like XP</title>
		<link>http://paulnieuwelaar.wordpress.com/2010/12/03/making-the-windows-7-taskbar-more-like-xp/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2010/12/03/making-the-windows-7-taskbar-more-like-xp/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 09:33:19 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.com/?p=904</guid>
		<description><![CDATA[This is an easy one, but I thought I would show it anyway. Basically when I first started using Windows 7, it took a while to get used to the combined program icons on the taskbar, so I thought I would show this quick way to make it a bit more familiar for those of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=904&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is an easy one, but I thought I would show it anyway.</p>
<p>Basically when I first started using Windows 7, it took a while to get used to the combined program icons on the taskbar, so I thought I would show this quick way to make it a bit more familiar for those of you that prefer the XP style taskbar.</p>
<p>To make the change, right click an empty part of the taskbar, and select Properties.</p>
<p><a href="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar11.jpg"><img class="alignnone size-full wp-image-905" title="taskbar1" src="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar11.jpg?w=614" alt=""   /></a></p>
<p>Under where it has Taskbar buttons, you can select &#8216;never combine&#8217;, which will make each window its own item on the taskbar, instead of grouping windows together.</p>
<p><a href="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar2.jpg"><img class="alignnone size-full wp-image-906" title="taskbar2" src="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar2.jpg?w=614" alt=""   /></a></p>
<p>You can also choose to check the &#8216;use small icons&#8217; checkbox, which will make the taskbar not quite as thick as usual, and more like XP.</p>
<p><a href="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar31.jpg"><img class="alignnone size-full wp-image-907" title="taskbar3" src="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar31.jpg?w=614" alt=""   /></a></p>
<p>Click ok, and then your takbar will look like this:</p>
<p><a href="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar41.jpg"><img class="alignnone size-full wp-image-908" title="taskbar4" src="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar41.jpg?w=614" alt=""   /></a></p>
<p>Simple. As you can see each of the 2 internet explorer windows have their own items on the taskbar, and each item has a title.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/904/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/904/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/904/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=904&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2010/12/03/making-the-windows-7-taskbar-more-like-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar11.jpg" medium="image">
			<media:title type="html">taskbar1</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar2.jpg" medium="image">
			<media:title type="html">taskbar2</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar31.jpg" medium="image">
			<media:title type="html">taskbar3</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2010/12/taskbar41.jpg" medium="image">
			<media:title type="html">taskbar4</media:title>
		</media:content>
	</item>
		<item>
		<title>Dynamics CRM 2011 SketchFlow Stencils</title>
		<link>http://paulnieuwelaar.wordpress.com/2010/12/01/dynamics-crm-2011-sketchflow-stencils-2/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2010/12/01/dynamics-crm-2011-sketchflow-stencils-2/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 09:48:31 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Dynamics CRM 2011]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.com/?p=895</guid>
		<description><![CDATA[Magnetism&#8217;s Dynamics CRM 2011 SketchFlow Stencils &#8220;mSketch&#8221; have just been released. The mSketch stencils allow you to create your Dynamics CRM 2011 customizations using the stencils and Expression Blend 4, to create &#8216;sketchy&#8217; forms that your customers can interact with, to give you important feedback that will save you development time and money. Check out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=895&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Magnetism&#8217;s Dynamics CRM 2011 SketchFlow Stencils &#8220;mSketch&#8221; have just been released.</p>
<p>The mSketch stencils allow you to create your Dynamics CRM 2011 customizations using the stencils and Expression Blend 4, to create &#8216;sketchy&#8217; forms that your customers can interact with, to give you important feedback that will save you development time and money.</p>
<p style="text-align:center;"><a href="http://paulnieuwelaar.files.wordpress.com/2010/12/msketch.jpg"><img class="alignnone size-full wp-image-911" title="msketch" src="http://paulnieuwelaar.files.wordpress.com/2010/12/msketch.jpg?w=614" alt=""   /></a></p>
<p>Check out the mSketch product page to view some screenshots, or to find out more information:  <a href="http://www.magnetism.co.nz/solutionscasestudies/solutions/msketch.aspx">http://www.magnetism.co.nz/solutionscasestudies/solutions/msketch.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/895/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/895/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/895/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/895/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/895/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/895/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/895/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/895/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/895/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/895/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/895/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/895/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/895/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/895/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=895&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2010/12/01/dynamics-crm-2011-sketchflow-stencils-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>

		<media:content url="http://paulnieuwelaar.files.wordpress.com/2010/12/msketch.jpg" medium="image">
			<media:title type="html">msketch</media:title>
		</media:content>
	</item>
		<item>
		<title>Update Rollup 14 for Microsoft Dynamics CRM 4.0</title>
		<link>http://paulnieuwelaar.wordpress.com/2010/11/24/update-rollup-14-for-microsoft-dynamics-crm-4-0/</link>
		<comments>http://paulnieuwelaar.wordpress.com/2010/11/24/update-rollup-14-for-microsoft-dynamics-crm-4-0/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 00:01:19 +0000</pubDate>
		<dc:creator>Paul</dc:creator>
				<category><![CDATA[Dynamics CRM 4.0]]></category>

		<guid isPermaLink="false">http://paulnieuwelaar.com/?p=892</guid>
		<description><![CDATA[Update Rollup 14 for Microsoft Dynamics CRM 4.0 has been released, you should download it and upgrade now. http://bit.ly/bHtrKX<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=892&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Update Rollup 14 for Microsoft Dynamics CRM 4.0 has been released, you should download it and upgrade now. <a href="http://bit.ly/bHtrKX">http://bit.ly/bHtrKX</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/paulnieuwelaar.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/paulnieuwelaar.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/paulnieuwelaar.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/paulnieuwelaar.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/paulnieuwelaar.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/paulnieuwelaar.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/paulnieuwelaar.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/paulnieuwelaar.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/paulnieuwelaar.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/paulnieuwelaar.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/paulnieuwelaar.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/paulnieuwelaar.wordpress.com/892/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/paulnieuwelaar.wordpress.com/892/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/paulnieuwelaar.wordpress.com/892/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=paulnieuwelaar.wordpress.com&amp;blog=18994803&amp;post=892&amp;subd=paulnieuwelaar&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://paulnieuwelaar.wordpress.com/2010/11/24/update-rollup-14-for-microsoft-dynamics-crm-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d3d9aa8415e1ce26789334a4e1ea5ed?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">paulnieuwelaar</media:title>
		</media:content>
	</item>
	</channel>
</rss>
