<?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>Cherry Bytes</title>
	<atom:link href="https://clintoncherry.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://clintoncherry.wordpress.com</link>
	<description>little bytes of SharePoint and .Net</description>
	<lastBuildDate>Thu, 12 Dec 2013 07:38:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='clintoncherry.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Cherry Bytes</title>
		<link>https://clintoncherry.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://clintoncherry.wordpress.com/osd.xml" title="Cherry Bytes" />
	<atom:link rel='hub' href='https://clintoncherry.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Check if a SharePoint list item exists based on a unique URL field</title>
		<link>https://clintoncherry.wordpress.com/2013/12/12/check-if-a-sharepoint-list-item-exists-based-on-a-unique-url-field/</link>
					<comments>https://clintoncherry.wordpress.com/2013/12/12/check-if-a-sharepoint-list-item-exists-based-on-a-unique-url-field/#respond</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Thu, 12 Dec 2013 07:38:34 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SPListItem]]></category>
		<category><![CDATA[URL]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/?p=204</guid>

					<description><![CDATA[Just a quick one I had to do today &#8211; check the contents of a SharePoint list and check if an item is unique based on a URL field (ie if it was a list of links then make sure &#8230; <a href="https://clintoncherry.wordpress.com/2013/12/12/check-if-a-sharepoint-list-item-exists-based-on-a-unique-url-field/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Just a quick one I had to do today &#8211; check the contents of a SharePoint list and check if an item is unique based on a URL field (ie if it was a list of links then make sure the same link is not added to the list twice).</p>
<p>I wrote the following method which handled this perfectly:</p>
<blockquote><p>private bool CheckItemExists(SPList list, SPFolder folder, string urlValue)<br />
{<br />
SPQuery query = new SPQuery();<br />
if (folder != null)<br />
{<br />
query.Folder = folder;<br />
}<br />
query.Query = @&#8221;<br />
&lt;Where&gt;<br />
&lt;Eq&gt;<br />
&lt;FieldRef Name=&#8217;URL&#8217; /&gt;<br />
&lt;Value Type=&#8217;Text&#8217;&gt;&#8221; + urlValue + @&#8221;&lt;/Value&gt;<br />
&lt;/Eq&gt;<br />
&lt;/Where&gt;&#8221;;<br />
SPListItemCollection found = list.GetItems(query);<br />
return (found.Count &gt; 0);<br />
}</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2013/12/12/check-if-a-sharepoint-list-item-exists-based-on-a-unique-url-field/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>
	</item>
		<item>
		<title>K2 SmartObject error after deleting SmartObject directly from database</title>
		<link>https://clintoncherry.wordpress.com/2012/08/14/k2-smartobject-error-after-deleting-smartobject-directly-from-database/</link>
					<comments>https://clintoncherry.wordpress.com/2012/08/14/k2-smartobject-error-after-deleting-smartobject-directly-from-database/#respond</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Tue, 14 Aug 2012 08:42:20 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[GUID]]></category>
		<category><![CDATA[K2]]></category>
		<category><![CDATA[SmartObject]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/?p=201</guid>

					<description><![CDATA[If you ever see an error in K2 where you click to view your SmartObjects and you get a exception saying there is a missing object and it references a GUID OR you see the following error in your event &#8230; <a href="https://clintoncherry.wordpress.com/2012/08/14/k2-smartobject-error-after-deleting-smartobject-directly-from-database/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>If you ever see an error in K2 where you click to view your SmartObjects and you get a exception saying there is a missing object and it references a GUID OR you see the following error in your event log &#8216;1 Invalid archive type&#8217; then you have no doubt done what I did, and deleted a SmartObject directly from the database in K2 (which I really DON&#8217;T recommend doing!).</p>
<p>If you have however done this, then when you clean up all the data from the database make sure you delete the record in the Categories database, and specifically the CategoriesData table. You will find the GUID from the error that keeps popping up in in the &#8216;data&#8217; column of this database. Once you delete the problem row you K2 environment should return to normal (though you might need to restart the K2 service). This will also fix issues with the SmartObject service, as this also will NOT work whilst there is a rogue row in the CategoriesData table.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2012/08/14/k2-smartobject-error-after-deleting-smartobject-directly-from-database/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>
	</item>
		<item>
		<title>Changing the langauge of the SharePoint spell checker</title>
		<link>https://clintoncherry.wordpress.com/2012/02/29/changing-the-langauge-of-the-sharepoint-spell-checker/</link>
					<comments>https://clintoncherry.wordpress.com/2012/02/29/changing-the-langauge-of-the-sharepoint-spell-checker/#comments</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Wed, 29 Feb 2012 02:19:14 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/?p=197</guid>

					<description><![CDATA[I recently realised that regardless of what language you have set your locale or settings to in your SharePoint instance that the spellchecker dictionary ALWAYS defaults to US English &#8211; however a client of mine wanted to use the Australian &#8230; <a href="https://clintoncherry.wordpress.com/2012/02/29/changing-the-langauge-of-the-sharepoint-spell-checker/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p><span style="font-size:medium;">I recently realised that regardless of what language you have set your locale or settings to in your SharePoint instance that the spellchecker dictionary ALWAYS defaults to US English &#8211; however a client of mine wanted to use the Australian English as their site was hosted and used primarily by Australians! </span></p>
<p><span style="font-size:medium;">I thought this was going to be an easy configuration change, however in the end this required a bit of javascript injected into the page.</span></p>
<p>Basically all you need to do is add the following to the masterpage and set the correct value for the locale that you want:</p>
<p>&lt;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&gt;<br />
L_Language_Text = 3081;<br />
&lt;/script&gt;</p>
<p>Once this is added the default dictionary is changed. I have included a table below of the common dictionaries for the various English languages. For a complete list of locales check out the following site here: <a href="http://msdn.microsoft.com/en-us/goglobal/bb964664">http://msdn.microsoft.com/en-us/goglobal/bb964664</a>.</p>
<p>English &#8211; United States &#8211; 1033<br />
English &#8211; United Kingdom &#8211; 2057<br />
English &#8211; Australia &#8211; 3081<br />
English &#8211; Belize &#8211; 10249<br />
English &#8211; Canada &#8211; 4105<br />
English &#8211; Caribbean &#8211; 9225<br />
English &#8211; Hong Kong SAR &#8211; 15369<br />
English &#8211; India &#8211; 16393<br />
English &#8211; Indonesia &#8211; 14345<br />
English &#8211; Ireland &#8211; 6153<br />
English &#8211; Jamaica &#8211; 8201<br />
English &#8211; Malaysia &#8211; 17417<br />
English &#8211; New Zealand &#8211; 5129<br />
English &#8211; Philippines &#8211; 13321<br />
English &#8211; Singapore &#8211; 18441<br />
English &#8211; South Africa &#8211; 7177<br />
English &#8211; Trinidad &#8211; 11273<br />
English &#8211; Zimbabwe &#8211; 12297</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2012/02/29/changing-the-langauge-of-the-sharepoint-spell-checker/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>
	</item>
		<item>
		<title>SeSecurityPrivilege error when trying to install SharePoint 2010</title>
		<link>https://clintoncherry.wordpress.com/2012/01/27/sesecurityprivilege-error-when-trying-to-install-sharepoint-2010/</link>
					<comments>https://clintoncherry.wordpress.com/2012/01/27/sesecurityprivilege-error-when-trying-to-install-sharepoint-2010/#respond</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Fri, 27 Jan 2012 04:08:42 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/?p=195</guid>

					<description><![CDATA[If you get the ‘SeSecurityPrivilege’ error when trying to install SharePoint 2010 &#8211; this is due to not having adequate permissions with the account you are using. This can often be caused by the permissions your account has in Active &#8230; <a href="https://clintoncherry.wordpress.com/2012/01/27/sesecurityprivilege-error-when-trying-to-install-sharepoint-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>If you get the ‘SeSecurityPrivilege’ error when trying to install SharePoint 2010 &#8211; this is due to not having adequate permissions with the account you are using. This can often be caused by the permissions your account has in Active Directory. Luckily there is a way to get around this on the local machine you are using.</p>
<p> In order to fix this you will need to do the following:</p>
<p>Go to &gt; Local Security Policy- &gt; Local Policies -&gt; User Rights Assignment on the server you are trying to install on.</p>
<p>Assign your logged in account (eg [domain]/[username]) the following rights:</p>
<ul>
<li>Back up files and directories</li>
<li>Debug Programs</li>
<li>Manage auditing and Security log</li>
<li>Restore files and directories</li>
<li>Take ownership of files or other objects</li>
</ul>
<p>Once you have done this, log out then log back in again.<br />
After this the installer should now work!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2012/01/27/sesecurityprivilege-error-when-trying-to-install-sharepoint-2010/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>
	</item>
		<item>
		<title>Binding multiple properties to single field in WPF</title>
		<link>https://clintoncherry.wordpress.com/2011/11/29/binding-multiple-properties-to-single-field-in-wpf/</link>
					<comments>https://clintoncherry.wordpress.com/2011/11/29/binding-multiple-properties-to-single-field-in-wpf/#respond</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 01:49:28 +0000</pubDate>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[WPF]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/?p=188</guid>

					<description><![CDATA[On several occassions I have wanted to bind a number of properties from my View Model to a single control in my view. Luckily there is an easy way to do this with WPF &#8211; using multibinding. Examples are better &#8230; <a href="https://clintoncherry.wordpress.com/2011/11/29/binding-multiple-properties-to-single-field-in-wpf/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>On several occassions I have wanted to bind a number of properties from my View Model to a single control in my view. Luckily there is an easy way to do this with WPF &#8211; using multibinding. Examples are better than words so if you want to do this just do this&#8230;</p>
<p>&lt;ListBox ItemsSource=&#8221;{StaticResource MyData}&#8221;&gt;<br />
  &lt;ListBox.ItemTemplate&gt;<br />
    &lt;DataTemplate&gt;<br />
      &lt;TextBlock&gt;<br />
        &lt;TextBlock.Text&gt;<br />
          &lt;MultiBinding  StringFormat=&#8221;{}{0} &#8212; Now only {1:C}!&#8221;&gt;<br />
            &lt;Binding Path=&#8221;Description&#8221;/&gt;<br />
            &lt;Binding Path=&#8221;Price&#8221;/&gt;<br />
          &lt;/MultiBinding&gt;<br />
        &lt;/TextBlock.Text&gt;<br />
      &lt;/TextBlock&gt;<br />
    &lt;/DataTemplate&gt;<br />
  &lt;/ListBox.ItemTemplate&gt;<br />
&lt;/ListBox&gt;</p>
<p>Thanks to <a title="WPF Data Binding" href="http://msdn.microsoft.com/en-us/library/system.windows.data.bindingbase.stringformat.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/system.windows.data.bindingbase.stringformat.aspx</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2011/11/29/binding-multiple-properties-to-single-field-in-wpf/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>
	</item>
		<item>
		<title>Fading visibility in and out in WPF</title>
		<link>https://clintoncherry.wordpress.com/2011/08/11/fading-visibility-in-and-out-in-wpf/</link>
					<comments>https://clintoncherry.wordpress.com/2011/08/11/fading-visibility-in-and-out-in-wpf/#respond</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Thu, 11 Aug 2011 03:07:49 +0000</pubDate>
				<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/?p=185</guid>

					<description><![CDATA[I was recently looking for an easy way to fade visibility in, and then out (after a few seconds) in WPF. I thought this would be great for &#8216;success&#8217; messages or something similiar. Turns out it is a piece of &#8230; <a href="https://clintoncherry.wordpress.com/2011/08/11/fading-visibility-in-and-out-in-wpf/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I was recently looking for an easy way to fade visibility in, and then out (after a few seconds) in WPF. I thought this would be great for &#8216;success&#8217; messages or something similiar. Turns out it is a piece of cake using a simple style trigger on the style for your control.</p>
<p>Here is my basic implementation:</p>
<p>&lt;Style.Triggers&gt;<br />
    &lt;Trigger Property=&#8221;Text&#8221; Value=&#8221;&#8221;&gt;<br />
        &lt;Setter Property=&#8221;Visibility&#8221; Value=&#8221;Collapsed&#8221; /&gt;<br />
    &lt;/Trigger&gt;<br />
    &lt;Trigger Property=&#8221;Text&#8221; Value=&#8221;{x:Null}&#8221;&gt;<br />
        &lt;Setter Property=&#8221;Visibility&#8221; Value=&#8221;Collapsed&#8221; /&gt;<br />
    &lt;/Trigger&gt;<br />
    &lt;Trigger Property=&#8221;Visibility&#8221; Value=&#8221;Visible&#8221;&gt;<br />
        &lt;Trigger.EnterActions&gt;<br />
            &lt;BeginStoryboard&gt;<br />
                &lt;Storyboard&gt;<br />
                    &lt;DoubleAnimation Storyboard.TargetProperty=&#8221;Opacity&#8221; Duration=&#8221;00:00:00&#8243; BeginTime=&#8221;00:00:00&#8243; From=&#8221;0.0&#8243; To=&#8221;1.0&#8243; /&gt;<br />
                    &lt;DoubleAnimation Storyboard.TargetProperty=&#8221;Opacity&#8221; Duration=&#8221;00:00:03&#8243; BeginTime=&#8221;00:00:10&#8243; From=&#8221;1.0&#8243; To=&#8221;0.0&#8243; /&gt;<br />
                &lt;/Storyboard&gt;<br />
            &lt;/BeginStoryboard&gt;<br />
        &lt;/Trigger.EnterActions&gt;<br />
    &lt;/Trigger&gt;<br />
&lt;/Style.Triggers&gt;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2011/08/11/fading-visibility-in-and-out-in-wpf/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>
	</item>
		<item>
		<title>Updating SPListItem&#8217;s in a SPListItemCollection</title>
		<link>https://clintoncherry.wordpress.com/2011/04/01/updating-splistitems-in-a-splistitemcollection/</link>
					<comments>https://clintoncherry.wordpress.com/2011/04/01/updating-splistitems-in-a-splistitemcollection/#comments</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Fri, 01 Apr 2011 05:24:28 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/?p=182</guid>

					<description><![CDATA[Wow! Can&#8217;t believe I haven&#8217;t discovered this before, but you can NOT directly update a SharePoint list item in a SPListItemCollection. Basically you need to reference the item you are going to update as an SPListItem and update that for &#8230; <a href="https://clintoncherry.wordpress.com/2011/04/01/updating-splistitems-in-a-splistitemcollection/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Wow! Can&#8217;t believe I haven&#8217;t discovered this before, but you can NOT directly update a SharePoint list item in a SPListItemCollection. Basically you need to reference the item you are going to update as an SPListItem and update that for it to work.</p>
<p>ie this does NOT work:</p>
<p><span style="color:#0000ff;">SPListItemCollection productMatches = currentWeb.Lists[&#8220;SomeList&#8221;].GetItems(query); </span><br />
<span style="color:#0000ff;">productMatches[0][&#8220;UpdatedValue&#8221;] = true; </span><br />
<span style="color:#0000ff;">productMatches[0].Update(</span>);</p>
<p>Where as this DOES work:</p>
<p><span style="color:#0000ff;">SPListItemCollection productMatches = currentWeb.Lists[&#8220;SomeList&#8221;].GetItems(query); </span><br />
<span style="color:#0000ff;">SPListItem someItem = productMatches[0]; </span><br />
<span style="color:#0000ff;">someItem[&#8220;UpdatedValue&#8221;] = true; </span><br />
<span style="color:#0000ff;">someItem.Update();</span></p>
<p>Funny how such simple things can elude you for so many years&#8230; <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2011/04/01/updating-splistitems-in-a-splistitemcollection/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Phone 7 Development</title>
		<link>https://clintoncherry.wordpress.com/2011/02/13/windows-phone-7-development/</link>
					<comments>https://clintoncherry.wordpress.com/2011/02/13/windows-phone-7-development/#respond</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Sun, 13 Feb 2011 07:21:10 +0000</pubDate>
				<category><![CDATA[Windows Phone 7]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/?p=173</guid>

					<description><![CDATA[I am very excited to have submitted my very first application to the Windows Phone 7 marketplace. Over the next few months I intend on creating some more and adding them to the marketplace. As a result some of my &#8230; <a href="https://clintoncherry.wordpress.com/2011/02/13/windows-phone-7-development/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<div data-shortcode="caption" id="attachment_174" style="width: 190px" class="wp-caption alignleft"><a href="https://clintoncherry.wordpress.com/wp-content/uploads/2011/02/screen-shots-1.png"><img aria-describedby="caption-attachment-174" data-attachment-id="174" data-permalink="https://clintoncherry.wordpress.com/2011/02/13/windows-phone-7-development/screen-shots-1/" data-orig-file="https://clintoncherry.wordpress.com/wp-content/uploads/2011/02/screen-shots-1.png" data-orig-size="480,800" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Super Size Me Screen Shot" data-image-description="" data-image-caption="&lt;p&gt;Super Size Me Screen Shot&lt;/p&gt;
" data-medium-file="https://clintoncherry.wordpress.com/wp-content/uploads/2011/02/screen-shots-1.png?w=180" data-large-file="https://clintoncherry.wordpress.com/wp-content/uploads/2011/02/screen-shots-1.png?w=480" class="size-medium wp-image-174" title="Super Size Me Screen Shot" src="https://clintoncherry.wordpress.com/wp-content/uploads/2011/02/screen-shots-1.png?w=180&#038;h=300" alt="Super Size Me Screen Shot" width="180" height="300" srcset="https://clintoncherry.wordpress.com/wp-content/uploads/2011/02/screen-shots-1.png?w=180 180w, https://clintoncherry.wordpress.com/wp-content/uploads/2011/02/screen-shots-1.png?w=360 360w, https://clintoncherry.wordpress.com/wp-content/uploads/2011/02/screen-shots-1.png?w=90 90w" sizes="(max-width: 180px) 100vw, 180px" /></a><p id="caption-attachment-174" class="wp-caption-text">Super Size Me Screen Shot</p></div>
<p>I am very excited to have submitted my very first application to the Windows Phone 7 marketplace. Over the next few months I intend on creating some more and adding them to the marketplace. As a result some of my SharePoint work I am doing and have been working on is going to be on the back burner a bit.</p>
<p>What this does mean though is that I am (and have been) learning a whole lot of new things around the Windows Phone 7 development experience &#8211; especially around Silverlight, Azure and Expression &#8211; so I intend on doing some posts to this blog around some of my discoveries.</p>
<p>If you are interested in reading about my very first application you can check out my company website <a title="Cherry Byte Software" href="http://cherrybytesoftware.com">Cherry Byte Software</a> for more information. Like here, I plan on doing regular updates there on the applications that are coming out!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2011/02/13/windows-phone-7-development/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>

		<media:content url="https://clintoncherry.wordpress.com/wp-content/uploads/2011/02/screen-shots-1.png?w=180" medium="image">
			<media:title type="html">Super Size Me Screen Shot</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrading Visual Studio 2010 Test Projects</title>
		<link>https://clintoncherry.wordpress.com/2010/12/16/upgrading-visual-studio-2010-test-projects/</link>
					<comments>https://clintoncherry.wordpress.com/2010/12/16/upgrading-visual-studio-2010-test-projects/#comments</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Thu, 16 Dec 2010 01:33:23 +0000</pubDate>
				<category><![CDATA[Visual Studio]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/?p=168</guid>

					<description><![CDATA[Just recently upgraded a VS2010 Test Project and kept getting the following error whenever I tried to run any tests: Object of type &#8216;Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestAdapterContext&#8217; cannot be converted to type &#8216;Microsoft.VisualStudio.TestTools.UnitTesting.TestContext&#8217; Solution &#8211; the assembly Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll is using the wrong version (9.0.0.0 instead &#8230; <a href="https://clintoncherry.wordpress.com/2010/12/16/upgrading-visual-studio-2010-test-projects/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Just recently upgraded a VS2010 Test Project and kept getting the following error whenever I tried to run any tests:</p>
<p>Object of type &#8216;Microsoft.VisualStudio.TestTools.TestTypes.Unit.UnitTestAdapterContext&#8217; cannot be converted to type &#8216;Microsoft.VisualStudio.TestTools.UnitTesting.TestContext&#8217;</p>
<p>Solution &#8211; the assembly Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll is using the wrong version (9.0.0.0 instead of 10.0.0.0). Simply remove the reference toMicrosoft.VisualStudio.QualityTools.UnitTestFramework.dll and then add the reference again but using the 10.0.0.0 version!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2010/12/16/upgrading-visual-studio-2010-test-projects/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>
	</item>
		<item>
		<title>Viewing the contents of a SharePoint List or Site Definition file (STP)</title>
		<link>https://clintoncherry.wordpress.com/2010/06/16/viewing-the-contents-of-a-sharepoint-list-or-site-definition-file-stp/</link>
					<comments>https://clintoncherry.wordpress.com/2010/06/16/viewing-the-contents-of-a-sharepoint-list-or-site-definition-file-stp/#respond</comments>
		
		<dc:creator><![CDATA[clintoncherry]]></dc:creator>
		<pubDate>Wed, 16 Jun 2010 12:56:56 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://clintoncherry.wordpress.com/2010/06/16/viewing-the-contents-of-a-sharepoint-list-or-site-definition-file-stp</guid>

					<description><![CDATA[Wow! I can not believe that I just discovered that you can easily view the contents of an exported list or site definition in SharePoint. I had always exported then reimported these files to get the definitions &#8211; however it &#8230; <a href="https://clintoncherry.wordpress.com/2010/06/16/viewing-the-contents-of-a-sharepoint-list-or-site-definition-file-stp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<div id="msgcns!AEC0DCBC460E45B9!5324" class="bvMsg">
<div>Wow! I can not believe that I just discovered that you can easily view the contents of an exported list or site definition in SharePoint. I had always exported then reimported these files to get the definitions &#8211; however it is actually as simple as renaming the .stp file to a .cab file, then you can easily view the contents of the site or list definition! Most of this is in a pretty meaty manifest.xml file &#8211; but it is definitely handy to know and be able to do.</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://clintoncherry.wordpress.com/2010/06/16/viewing-the-contents-of-a-sharepoint-list-or-site-definition-file-stp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/4f0a16610389d79be8a2f398b7be05541b6e451d0adc1f02c2e33dfbcaf9ebcc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">clintoncherry</media:title>
		</media:content>
	</item>
	</channel>
</rss>
