<?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>Mike Hole &#187; WP7</title>
	<atom:link href="http://mikehole.com/category/wp7/feed/" rel="self" type="application/rss+xml" />
	<link>http://mikehole.com</link>
	<description>My development stuff ...</description>
	<lastBuildDate>Sun, 05 Feb 2012 13:42:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mikehole.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mike Hole &#187; WP7</title>
		<link>http://mikehole.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mikehole.com/osd.xml" title="Mike Hole" />
	<atom:link rel='hub' href='http://mikehole.com/?pushpress=hub'/>
		<item>
		<title>Adding a map image to a secondary live tile.</title>
		<link>http://mikehole.com/2011/09/09/adding-a-map-image-to-a-secondary-live-tile/</link>
		<comments>http://mikehole.com/2011/09/09/adding-a-map-image-to-a-secondary-live-tile/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 07:38:00 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Live Tiles]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[WP7]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/2011/09/09/adding-a-map-image-to-a-secondary-live-tile/</guid>
		<description><![CDATA[Does your app use live tiles to pin a tile that relates to a location that has a known Latitude and Longitude? If so did you know that it is easy to have a map of that location appear on that tile. This is done by using the Bing maps imagery service. For starters lets [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=204&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Does your app use live tiles to pin a tile that relates to a location that has a known Latitude and Longitude? If so did you know that it is easy to have a map of that location appear on that tile. This is done by using the Bing maps imagery service.</p>
<p>For starters lets look at how you create the tile in code: </p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:b0ad6aa8-17a2-487e-be61-3d3b25603fab:0aa1b03e-e04b-4dd7-80c2-ee115393bf7c" class="wlWriterEditableSmartContent">
<pre><pre class="brush: csharp; pad-line-numbers: true; wrap-lines: false;">var secondaryTile = new StandardTileData                  
{  
    Title = &quot;Title Title&quot;,
    Count = null,
    BackgroundImage = new Uri(&quot;/Background.png&quot;, UriKind.Relative),
    BackBackgroundImage = new Uri(&quot;/BackBackground.png&quot;, UriKind.Relative)                 
};

ShellTile.Create(navUri, secondaryTile);

</pre></pre>
</div>
<p>As you can see both the BackgroundImage and BackBackgroundImage take a Uri in the code above. The Uri above is specified as Relative this means that the images can be located within the apps content (as part of the XAP file) or within the applications isolated storage.</p>
<p>You are however not restricted to relative Uri’s you can specify Absolute Uri’s for the image. This opens up the ability to have the image come from an external web server. This is where the Bing maps imagery API comes in.</p>
<p>The API is a RESTfull service which means that all calls to get an image is nothing more complicated than a Uri <img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://mikehole.files.wordpress.com/2011/09/wlemoticon-smile.png?w=575"></p>
<p>Here is how a call to get a map image looks:</p>
<p><a href="http://dev.virtualearth.net/REST/v1/Imagery/Map/Road/47.644829750061,-122.141661643982/15?mapSize=190,190&amp;&amp;key=****ENTER">http://dev.virtualearth.net/REST/v1/Imagery/Map/Road/47.644829750061,-122.141661643982/15?mapSize=190,190&amp;&amp;key=****ENTER</a> A KEY HERE***</p>
<p>This produces the following image:</p>
<p><img src="http://dev.virtualearth.net/REST/v1/Imagery/Map/Road/47.644829750061,-122.141661643982/15?mapSize=190,190&amp;&amp;key=AjFmGO_Oe13HtEa41opVDEIiK18xfhuOLfN5ZoroJ9JfnRsYxyRdFy2CPTJH5Gsc"></p>
<p>You can find out more about using the Bing maps Rest services here : <a href="http://msdn.microsoft.com/en-us/library/ff701713.aspx" target="_blank">link</a> with the&nbsp; details of the imagery services found here: <a href="http://msdn.microsoft.com/en-us/library/ff701724.aspx" target="_blank">link</a> You will also need to get yourself an application key so that you can use the service. Details can be found here: <a href="http://msdn.microsoft.com/en-us/library/ff428642.aspx" target="_blank">link</a></p>
<p>so for adding the image to a live tile all you need to do is get the Uri in the correct format and set that to be the source image of the tile here is an example how how I go about this:</p>
<p><div style="display:inline;float:none;margin:0;padding:0;" id="scid:b0ad6aa8-17a2-487e-be61-3d3b25603fab:e2079b6a-2e28-4f0c-9848-609e26c1bfa6" class="wlWriterEditableSmartContent">
<pre><pre class="brush: csharp; pad-line-numbers: true; wrap-lines: false;">string strURi = string.Format(
	&quot;http://dev.virtualearth.net/REST/v1/Imagery/Map/Road/{0},{1}/15?mapSize=190,190&amp;&amp;key={2}&quot;, 
	lat, lon, key); 

var secondaryTile = new StandardTileData 
{ 
	Title = selectedLI.Name, 
	Count = null, 
	BackgroundImage = new Uri(&quot;/Background.png&quot;, UriKind.Relative), 
	BackBackgroundImage = new Uri(strUri, UriKind.Absolute) 
}; 

ShellTile.Create(navUri, secondaryTile); 
</pre></pre>
</div>
<p>The lat, lon and key variables have all been set prior to calling this code. </p>
<pre></pre>
<p>This is how the tile looks in the emulator: </p>
<p><a href="http://mikehole.files.wordpress.com/2011/09/2011-09-09-08h16_02.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="2011-09-09 08h16_02" border="0" alt="2011-09-09 08h16_02" src="http://mikehole.files.wordpress.com/2011/09/2011-09-09-08h16_02_thumb.png?w=196&#038;h=169" width="196" height="169"></a></p>
<p>As you can see this is a rather simple way of adding some extra information to one of your tiles.</p>
<p>In the next blog post I hope to extend this further and add some additional graphics to the background. I will also be making use of the powerful WP7Contrib library.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/204/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=204&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2011/09/09/adding-a-map-image-to-a-secondary-live-tile/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>

		<media:content url="http://mikehole.files.wordpress.com/2011/09/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>

		<media:content url="http://dev.virtualearth.net/REST/v1/Imagery/Map/Road/47.644829750061,-122.141661643982/15?mapSize=190,190&#38;&#38;key=AjFmGO_Oe13HtEa41opVDEIiK18xfhuOLfN5ZoroJ9JfnRsYxyRdFy2CPTJH5Gsc" medium="image" />

		<media:content url="http://mikehole.files.wordpress.com/2011/09/2011-09-09-08h16_02_thumb.png" medium="image">
			<media:title type="html">2011-09-09 08h16_02</media:title>
		</media:content>
	</item>
		<item>
		<title>An end to the good times before they even start? &#8230;</title>
		<link>http://mikehole.com/2011/06/06/an-end-to-the-good-times-before-they-even-start/</link>
		<comments>http://mikehole.com/2011/06/06/an-end-to-the-good-times-before-they-even-start/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 20:22:27 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[ARM]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[WP7]]></category>
		<category><![CDATA[Win8]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[WP7DEV]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/2011/06/06/an-end-to-the-good-times-before-they-even-start/</guid>
		<description><![CDATA[On may the 18th I published an article that actually managed the biggest view numbers that I have had on any blog post that I have previously written: More good times for app developers? I think this is mainly down to the fact that it was an attempt to spread some good news for developer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=184&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On may the 18th I published an article that actually managed the biggest view numbers that I have had on any blog post that I have previously written:</p>
<p><a href="http://mikehole.com/2011/05/18/more-good-times-for-app-developers/" target="_blank">More good times for app developers?</a></p>
<p>I think this is mainly down to the fact that it was an attempt to spread some good news for developer who develop .net applications using XAML and c# or VB.</p>
<p>As of now there are 20K+ applications for windows phone 7 and this list is growing at quite an impressive rate. This rate of growth is because of the ease at which these developers can write applications. People who work for large corporates developing enterprise applications using .NET can now become app publishers and can deviate from writing anonymous code that drives a cog of large enterprise systems.</p>
<p><strong>These people I have met at our growing local user group. They are loving the application development platform that Microsoft have put together for them and have a hunger for more.</strong></p>
<p>If you are a developer that has been developing code for Android or iPhone then you will have started with a single form factor in which your code runs on and found that that the available form factors has increased and you now not only develop for the phone but your apps can be made to run on the new and emerging tablet based devices.</p>
<p>Microsoft have made great strides with Windows 8 to ensure that it has the capabilities to run on a multitude of form factors. It is here that they are hedging their bets on windows running anywhere.</p>
<p>So where will we stand when it comes to Tablets and native development when can we start re-using our code from within those 20K+ applications so that we can start reaping the benefits of the next set of platforms.</p>
<p><strong>Well from what Microsoft have disclosed in regards to the Windows 8 developer experience so far that just won’t be happening.</strong></p>
<p><strong>There has just been no message from Microsoft that states that don’t worry we still do native, and it will work within this snazzy new UI. </strong></p>
<p>It’s all been HTML and JS as a brand new application development platform.</p>
<p>If this stays the case then once you are a Windows Phone developer you will be staying a Windows Phone developer and if you have a great app then you will have to port it.</p>
<p>Right now the message is that people will have to wait for the Build conference to actually find out what the developer story will be. And of course more and more FUD will enter the mind of us developers as time goes on.</p>
<p>One item that may enter peoples heads is that Microsoft are shifting their developer strategy and application platform to HTML and JS even on Windows Phone (ARM and SOC means that Win 8 can power a phone at some point – phones are mentioned in the Intel article).</p>
<p>If people start experiencing this kind of fear and uncertainty they are going to stop developing apps and the rate at which the marketplace is building will slow down if not stop.</p>
<p>We so need to know what&#8217;s happening and we need to know sooner rather than later.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=184&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2011/06/06/an-end-to-the-good-times-before-they-even-start/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>
	</item>
		<item>
		<title>Cardiff&#8211;WPUG #2</title>
		<link>http://mikehole.com/2011/06/02/cardiffwpug-2/</link>
		<comments>http://mikehole.com/2011/06/02/cardiffwpug-2/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 09:58:25 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[Cardiff WPUG]]></category>
		<category><![CDATA[WP7]]></category>
		<category><![CDATA[Cardiff]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[WPUG]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/2011/06/02/cardiffwpug-2/</guid>
		<description><![CDATA[On June 1st we had the second user group meeting in Cardiff. It was quite an impressive turnout and I would like to say thanks to all those who came along. We do have a nice group of people building who share a passion for the Windows Phone platform. It can only go from strength [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=182&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On June 1st we had the second user group meeting in Cardiff.</p>
<p>It was quite an impressive turnout and I would like to say thanks to all those who came along. We do have a nice group of people building who share a passion for the Windows Phone platform. It can only go from strength to strength.</p>
<p>Thanks to Nick Ajderian from <a href="http://www.hattjoys.co.uk">www.hattjoys.co.uk</a> for providing a very entertaining and passionate talk on getting data from Twitter and chucking it on a map – Shame that the internet connection was poor and Nick had to resort to well prepared backup plans. Next time we won’t leave everything to the venue.</p>
<p>Thanks also to Iestyn Jones for demoing his good looking application <a href="http://social.zune.net/redirect?type=phoneApp&amp;id=a8323252-aa6f-e011-81d2-78e7d1fa76f8" target="_blank">Welsh Kitchen</a>. Iestyn has actually published 4 applications to the market place (search for ‘Bugail’ in Zune) and received his XBox from the <a href="http://www.my-rewards.com/wp7" target="_blank">Think.Dev Rewards</a> program. </p>
<p>For those of you looking to follow up from some of the items mentioned in my talk here are some links:</p>
<p><strong>Preemptive runtime intelligence:</strong></p>
<p><a href="http://www.preemptive.com/wp7">http://www.preemptive.com/wp7</a></p>
<p><strong>IP address to location conversion:</strong></p>
<p><a href="http://www.hostip.info/">http://www.hostip.info/</a></p>
<p><a href="http://api.hostip.info/get_html.php?ip=X.X.X.X&amp;position=true">http://api.hostip.info/get_html.php?ip=X.X.X.X&amp;position=true</a></p>
<p>One thing that I failed to mention was the alternatives to the Preemptive analytics. There is an Analytics library on Codeplex that supports Windows Phone 7 and different analytics (that’s way too many uses of the work in one paragraph) services such as the one provided by Google.</p>
<p>The library can be found here:</p>
<p><a href="http://msaf.codeplex.com/">http://msaf.codeplex.com/</a></p>
<p>And René Schulte (@rschu on twitter) has written an article on how to get up and running:</p>
<p><a href="http://kodierer.blogspot.com/2010/11/tracking-sales-statistics-with.html">http://kodierer.blogspot.com/2010/11/tracking-sales-statistics-with.html</a></p>
<p>We have lots more planned for upcoming meetings (the next likely to be mid July) so watch this space.   </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/182/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=182&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2011/06/02/cardiffwpug-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>
	</item>
		<item>
		<title>Tile Maker</title>
		<link>http://mikehole.com/2011/05/10/tile-maker/</link>
		<comments>http://mikehole.com/2011/05/10/tile-maker/#comments</comments>
		<pubDate>Tue, 10 May 2011 07:53:12 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[Live Tiles]]></category>
		<category><![CDATA[Tile Maker]]></category>
		<category><![CDATA[VS2010]]></category>
		<category><![CDATA[WP7]]></category>
		<category><![CDATA[WP7DEV]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/2011/05/10/tile-maker/</guid>
		<description><![CDATA[One of my applications on the marketplace is the countdown tile application. This is a simple application that when pinned to the home screen lets you see a countdown of the number of days until a certain date. This application has recorded 6299 unique users to date. It’s had a mixed bag as far as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=178&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=wptilemaker&amp;DownloadId=237468" /></p>
<p>One of my applications on the marketplace is the countdown tile application. This is a simple application that when pinned to the home screen lets you see a countdown of the number of days until a certain date.</p>
<p>This application has recorded 6299 unique users to date. It’s had a mixed bag as far as reviews is concerned but this is mainly down to the fact that the tile update isn’t the most reliable mechanism on the phone system (something for another blog post to come soon).</p>
<p>One feature that people ask for is the ability to use their own pictures in the background of the tile. This is something that I have been aiming to do for a ‘Pro’ version of the application to try and convert some of the 6K users into 75p purchasers <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>With this and the fact that some of the new updates to the live tile services within the Mango platform update that is coming has prompted me to create a control that lets user be a little more creative with the tile that they would like to create.</p>
<p>I am in the early stages of putting together a Tile Maker control that presents the user with an area the size of a standard live tile. Behind this area can be placed an image that the user wants to use within the tile. This image can be moved around by using multi-touch gestures. Once the user has the image in the desired place they can then take a snapshot of the tile area to use as the live tile.</p>
<p>If this control interests you you can download the current Alpha code from codeplex at this link:</p>
<p><a href="http://wptilemaker.codeplex.com/">http://wptilemaker.codeplex.com/</a></p>
<p>Let me know what you think and if you will find this control useful. Also if you can think of any additional features then pop them in a comment on this post.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/178/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=178&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2011/05/10/tile-maker/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>

		<media:content url="http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=wptilemaker&#38;DownloadId=237468" medium="image" />
	</item>
		<item>
		<title>The WP7 Marketplace and the Enterprise</title>
		<link>http://mikehole.com/2011/04/19/the-wp7-marketplace-and-the-enterprise/</link>
		<comments>http://mikehole.com/2011/04/19/the-wp7-marketplace-and-the-enterprise/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 14:30:35 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[Phone]]></category>
		<category><![CDATA[WP7]]></category>
		<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Marketplace]]></category>
		<category><![CDATA[Windows Phone]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/2011/04/19/the-wp7-marketplace-and-the-enterprise/</guid>
		<description><![CDATA[Being a windows phone developer I must say that the Mango platform update has me very excited (except a 30min and 15 second agent restriction leaves me underwhelmed – but that’s another story). One aspect of Mango that Microsoft have announced is the inclusion of two new market distribution models those being Beta and private [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=158&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Being a windows phone developer I must say that the Mango platform update has me very excited (except a 30min and 15 second agent restriction leaves me underwhelmed – but that’s another story).</p>
<p>One aspect of Mango that Microsoft have announced is the inclusion of two new market distribution models those being Beta and private distribution.</p>
<p>The private distribution model has been signalled as a let down for enterprises. This post details the perceived shortcomings: <a href="http://blog.wpfwonderland.com/2011/04/15/mango-adds-beta-and-private-marketplaces-to-windows-phone-7-and-neglects-enterprise/">http://blog.wpfwonderland.com/2011/04/15/mango-adds-beta-and-private-marketplaces-to-windows-phone-7-and-neglects-enterprise/</a></p>
<p>As this post mentions the idea that you can’t restrict the use of the application to a set of users rules out the private model for enterprise distribution.</p>
<p>In my opinion the enterprise has been supported from day one all that you have to do is consider the mechanisms that you are going to use to stop anybody from making use of your enterprise application.</p>
<p>If you consider the fact that your code can gain access to the devices unique identifier then you will be able to identify the device that your code is running on. </p>
<p>Consider this scenario that uses a workflow similar to how SSL certificates are issued to servers:</p>
<ul>
<li>A phone user downloads the application. </li>
<li>The user starts the application. The application asks the user for the Key that the company has provided via email (Thankfully we now have cut/paste to copy the key to the clipboard). </li>
<li>At this point the user does not have access to the key as this is the applications 1st run, so the user is presented with another button that will generate the key request (this should always be present until the application has received a valid key).. </li>
<li>The key is generated by code it will incorporate the devices unique identifier.&#160; This code is hashed and can be decoded by the companies systems. </li>
<li>Once the key has been generated the app launches a new email with the key included in the text. The email is addresses to the right email address. </li>
<li>The company receives the email from the phone user and verifies the email address that the request has come from. </li>
<li>A key that will unlock the application is generated and sent to the originating email address. </li>
<li>Once the user has the key they can enter it into the application and away they go. </li>
</ul>
<p>I know this isn&#8217;t perfect and you can probably pick a million holes in it (feel free to do so by posting a comment) but it does illustrate that rather than wait for the distribution channels to be created you can always work around them.</p>
<p><strong>UPDATE:</strong></p>
<p>Someone did point out that marketplace certification may be a sticker here . You would have to let the Microsoft testers know about the process via adding notes into the application submission.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=158&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2011/04/19/the-wp7-marketplace-and-the-enterprise/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>
	</item>
		<item>
		<title>From demo to featured application</title>
		<link>http://mikehole.com/2011/03/17/from-demo-to-featured-application/</link>
		<comments>http://mikehole.com/2011/03/17/from-demo-to-featured-application/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 14:08:25 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[Cardiff WPUG]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[WP7]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[Featured Application]]></category>
		<category><![CDATA[WPUG]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/2011/03/17/from-demo-to-featured-application/</guid>
		<description><![CDATA[Part of the agenda for each WPUG meeting is to give time for people to demonstrate their application to the rest of the attendees. These applications can be a finished product or something that has just been started by the developer. This I see as a valuable opportunity for the developers as they get a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=136&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://mikehole.files.wordpress.com/2011/03/featured.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;float:left;border-top:0;border-right:0;padding-top:0;" title="Featured" border="0" alt="Featured" align="left" src="http://mikehole.files.wordpress.com/2011/03/featured_thumb.png?w=136&#038;h=240" width="136" height="240" /></a>Part of the agenda for each WPUG meeting is to give time for people to demonstrate their application to the rest of the attendees. These applications can be a finished product or something that has just been started by the developer.</p>
<p>This I see as a valuable opportunity for the developers as they get a change to see what people think face to face rather than waiting for feedback or even the emails to their support address.</p>
<p>There is also one other even more important opportunity that is that could be created by the application demonstration.</p>
<p>An example of this is the continuing story behind the TaxiRoute application. On March 17th 2011 (St Patricks Day) the application was promoted to be the featured application within the Marketplace.</p>
<p>The rest of the story behind the development of TaxiRoute is one of a dogged determination of the managing director Trevor Daniel to create a database that holds the local authority hackney carriage tariff data for the whole of GB (Northern Ireland not included).</p>
<p>Once this information was completed Trevor built a web site <a href="http://www.taxiroute.co.uk">www.taxiroute.co.uk</a> and offered it out to the public. The web site now records around £1M in value of enquiries each month.</p>
<p>Not only does the web site approximate&#160; the charges of the taxy ride you want to take (the web site can not take into account waiting time for metred charges and therefore only provides a best case estimate) it will also provide a list of local firms, along with their telephone numbers.</p>
<p>As you can image when you are out and about you a web site isn’t the best way in which to get the information an obvious progression would be a phone application. Hence TaxiRoute GB was created.</p>
<p>Trevor decided to put his application forward to be demonstrated at the 1st Cardiff WPUG meeting on March 2nd where we were fortunate enough to get a date that had <a href="http://wotudo.net/" target="_blank">Paul Foster</a> and <a href="http://blogs.msdn.com/b/mikeormond/" target="_blank">Mike Ormond</a> attend.</p>
<p>Paul was impressed by the story that led to the development of the application and also impressed by the concept, so he pushed the application at the guys in the UK windows phone marketing.</p>
<p>The upshot of this being that the application has been considered an App Hero and has featured in a couple of ways and also be pushed within the social space.</p>
<p>Although the WPUG meetings (in London and Cardiff) won’t always be attended by members of the Microsoft DPE team it’s the connections that we have with these guys that make attending worth while even if you haven&#8217;t yet got that killer app to demonstrate. </p>
<p>The insight and understanding that you will gain along with the possible opportunity&#8217;s like the one that TaxiRoute has been given are just not worth missing.</p>
<p>Here is the application Listing in Zune:</p>
<p><a href="http://mikehole.files.wordpress.com/2011/03/image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://mikehole.files.wordpress.com/2011/03/image_thumb.png?w=600&#038;h=481" width="600" height="481" /></a></p>
<p>Along with the application listing the marketing guys at Microsoft also spread the word socially via Windows Phone UK:</p>
<p><a href="http://mikehole.files.wordpress.com/2011/03/2011-03-17-12h40_34.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="2011-03-17 12h40_34" border="0" alt="2011-03-17 12h40_34" src="http://mikehole.files.wordpress.com/2011/03/2011-03-17-12h40_34_thumb.png?w=511&#038;h=116" width="511" height="116" /></a></p>
<p><a href="http://mikehole.files.wordpress.com/2011/03/2011-03-17-12h57_09.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="2011-03-17 12h57_09" border="0" alt="2011-03-17 12h57_09" src="http://mikehole.files.wordpress.com/2011/03/2011-03-17-12h57_09_thumb.png?w=520&#038;h=210" width="520" height="210" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=136&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2011/03/17/from-demo-to-featured-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>

		<media:content url="http://mikehole.files.wordpress.com/2011/03/featured_thumb.png" medium="image">
			<media:title type="html">Featured</media:title>
		</media:content>

		<media:content url="http://mikehole.files.wordpress.com/2011/03/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://mikehole.files.wordpress.com/2011/03/2011-03-17-12h40_34_thumb.png" medium="image">
			<media:title type="html">2011-03-17 12h40_34</media:title>
		</media:content>

		<media:content url="http://mikehole.files.wordpress.com/2011/03/2011-03-17-12h57_09_thumb.png" medium="image">
			<media:title type="html">2011-03-17 12h57_09</media:title>
		</media:content>
	</item>
		<item>
		<title>Cardiff &#8211; WPUG March 2011</title>
		<link>http://mikehole.com/2011/03/09/cardiff-wpug-march-2011/</link>
		<comments>http://mikehole.com/2011/03/09/cardiff-wpug-march-2011/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:16:58 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[Cardiff WPUG]]></category>
		<category><![CDATA[WP7]]></category>
		<category><![CDATA[Cardiff]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[WPUG]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/2011/03/09/cardiff-wpug-march-2011/</guid>
		<description><![CDATA[Ok so meeting Number 1 down and definite call for more! From the feedback that I have received people did find it very useful and they are also expecting more. Some pointers to follow on from my talk: The developer tools are available here: http://create.msdn.com Once you have the tools installed ensure that you also [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=124&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="Getting things started at the first Cardiff WPUG by Sequence | Digital Agency, on Flickr" href="http://www.flickr.com/photos/56531024@N03/5496894060/"><img alt="Getting things started at the first Cardiff WPUG" src="http://farm6.static.flickr.com/5292/5496894060_2da4e3963f_m.jpg" width="240" height="160" /></a> <a title="The first Cardiff Windows Phone User Group by Sequence | Digital Agency, on Flickr" href="http://www.flickr.com/photos/56531024@N03/5496301455/"><img alt="The first Cardiff Windows Phone User Group" src="http://farm6.static.flickr.com/5135/5496301455_2369e52154_m.jpg" width="240" height="160" /></a>
<p>Ok so meeting Number 1 down and definite call for more! From the feedback that I have received people did find it very useful and they are also expecting more.</p>
<h5>Some pointers to follow on from my talk: </h5>
<p>The developer tools are available here: <a href="http://create.msdn.com">http://create.msdn.com</a> </p>
<p>Once you have the tools installed ensure that you also install NuGet: <a href="http://www.nuget.org">www.nuget.org</a></p>
<p>To add a package you will find the ‘Library Package Manager’ menu item under tools from here select ‘Add library package reference…’.</p>
<p>When creating a new project then I suggest that you use the following packages (enter the titles below in the search box):</p>
<ul>
<li>MvvmLight (<a href="http://mvvmlight.codeplex.com/">http://mvvmlight.codeplex.com/</a>) </li>
<li>SilverlightToolkitWP (<a href="http://silverlight.codeplex.com/">http://silverlight.codeplex.com/</a>) </li>
<li>Coding4Fun.Phone.Controls.Complete (<a href="http://coding4fun.codeplex.com/">http://coding4fun.codeplex.com/</a>) </li>
<li>PhoneyTools (<a href="http://phoney.codeplex.com/">http://phoney.codeplex.com/</a>) </li>
</ul>
<p>Anything i mentioned in my talk that I missed? </p>
<h5>People: </h5>
<p>We were lucky enough to get Mike Ormond and Paul Foster from the Microsoft DPE team. Both Paul and Mike are the UK evangelists for the Windows Phone platform. Also attending was Matt Lacey the founder of the WPUG event in London.</p>
<ul>One thing to note is that the meetings won’t always be attended by members of the Microsoft DPE team but they are very happy to support our efforts and will be attending on occasion. </ul>
<p>Paul Foster: <a href="http://wotudo.net/">http://wotudo.net/</a> and <a href="http://twitter.com/Paulfo" target="_blank">@paulfo</a></p>
<p>Mike Ormond: <a href="http://blogs.msdn.com/b/mikeormond/">http://blogs.msdn.com/b/mikeormond/</a> and <a href="http://twitter.com/MikeOrmond">@MikeOrmond</a></p>
<p>Matt Lacey: <a href="http://mrlacey.co.uk/">http://mrlacey.co.uk/</a> and <a href="http://twitter.com/mrlacey" target="_blank">@mrlacey</a> </p>
<p>The main WPUG web site is: <a href="http://www.wpug.net/">http://www.wpug.net/</a> with <a href="http://twitter.com/wpug" target="_blank">@wpug</a> being the twitter account to follow.</p>
<p>I have also created the Cardiff WPUG account to post announcements and details of the Cardiff based events: <a href="http://twitter.com/cdf_wpug" target="_blank">@cdf_wpug</a> This account will follow our members so should be worth following.</p>
<h5>What Next: </h5>
<p> Last thing that I want to do is lose that momentum, but I do have to decide how often the meetings can and will happen. For for this I will need to get an idea of what subject matter people would like talks on and also I would like to find volunteers to present talks.
<p>From our registration forms there were eight people who expressed a willingness to contribute so now it the time to put your money where your mouth is.</p>
<p>After the meeting on the 2nd I could see some areas that can already be covered:</p>
<ul>
<li>Deeper Dive into the MVVM Pattern. </li>
<li>Using the Preemptive Dotfuscator and adding analytics to applications. </li>
<li>Microsoft advertising framework. </li>
<li>Mapping and Location Service. </li>
</ul>
<ul>Are there areas you would like covered? If you do then post a comment here. Comments are moderated so it may take a little while for your comment to appear.</ul>
<ul>Once I have a a good idea of what we can offer our members in terms of talks and support then I can decide how often the meetings can happen.</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=124&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2011/03/09/cardiff-wpug-march-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5292/5496894060_2da4e3963f_m.jpg" medium="image">
			<media:title type="html">Getting things started at the first Cardiff WPUG</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5135/5496301455_2369e52154_m.jpg" medium="image">
			<media:title type="html">The first Cardiff Windows Phone User Group</media:title>
		</media:content>
	</item>
		<item>
		<title>WP7 Text Boxes &#8211; OnEnter (my 1st Behaviour).</title>
		<link>http://mikehole.com/2011/01/12/wp7-text-boxes-onenter-my-1st-behaviour/</link>
		<comments>http://mikehole.com/2011/01/12/wp7-text-boxes-onenter-my-1st-behaviour/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 13:58:35 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[Phone]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WP7]]></category>
		<category><![CDATA[Behaviours]]></category>
		<category><![CDATA[Text Boxes]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[WP7DEV]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/2011/01/12/wp7-text-boxes-onenter-my-1st-behaviour/</guid>
		<description><![CDATA[One problem I have encountered on various WP7 apps (including my own applications) is moving between text boxes on a page. The problem can present itself when the SIP is being displayed in front of the next control that requires input. In some cases the user is forced to press an area on the page [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=111&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://mikehole.files.wordpress.com/2011/01/2011-01-12-13h45_15.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;float:left;padding-top:0;border-width:0;" title="2011-01-12 13h45_15" border="0" alt="2011-01-12 13h45_15" align="left" src="http://mikehole.files.wordpress.com/2011/01/2011-01-12-13h45_15_thumb.png?w=131&#038;h=240" width="131" height="240" /></a>One problem I have encountered on various WP7 apps (including my own applications) is moving between text boxes on a page. The problem can present itself when the SIP is being displayed in front of the next control that requires input.</p>
<p>In some cases the user is forced to press an area on the page that does not include a text control to take the focus away from the text box. Once the SIP is hidden then the user can click the control they want to enter text into.</p>
<p>This is mainly because the controls do not support the concept of tab order because the SIP does not include a tab control to move between controls.</p>
<p>One solution to this is to look for the enter key to be released and move the focus on to the next control:</p>
<p><font color="#000000" face="Courier New">private void txtUsername_KeyUp(object sender, System.Windows.Input.KeyEventArgs e)      <br />{       <br />&#160;&#160;&#160; if (e.Key == System.Windows.Input.Key.Enter)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; txtPassword.Focus();       <br />}</font></p>
<p>This could prove to be a pain for developers and forces additional code within the page code file that can be said to be quite untidy.</p>
<p>It is because of this that I have created my own solution using a behaviour that can be attached to a control. One advantage of this is that it will be possible to set the values using Blend therefore reducing the reliance on the developer.</p>
<h5><span style="color:#a31515;"><font color="#000000">The OnEnter Behaviour:</font></span></h5>
<p> <span style="color:#a31515;"><font color="#000000">
<p><span style="color:#a31515;"><font color="#000000"><font color="#555555">The XAML below gives an example on how the behaviour can be attached to a text box</font></font></span></p>
<p><span style="color:#a31515;"><font color="#000000"><font color="#555555"></font><font color="#000000" face="Courier New">&lt;TextBox x:Name=&quot;txtUsername&quot;&gt;              <br />&#160;&#160;&#160; &lt;i:Interaction.Behaviors&gt;               <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;mh:OnEnter NextControlName=&quot;txtPassword&quot; /&gt;               <br />&#160;&#160;&#160; &lt;/i:Interaction.Behaviors&gt;               <br />&lt;/TextBox&gt;</font></font></span></p>
<p>   </font><font color="#555555"><span style="color:#a31515;"><font color="#000000"><font color="#555555">The additional namespaces that I have added to the page are:</font></font></span></font></span>
<p><font color="#000000" face="Courier New">xmlns:i=&quot;clr-namespace:</font></p>
<p><font color="#000000" face="Courier New">System.Windows.Interactivity;assembly=System.Windows.Interactivity&quot;      <br />xmlns:mh=&quot;clr-namespace:</font></p>
<p><font color="#000000" face="Courier New">MikeHole.WindowsPhone.Behaviors;assembly=MikeHole.WindowsPhone.Behaviors&quot;</font></p>
<p>You can download the project from <a href="http://cid-e5bd18f90789e95b.office.live.com/self.aspx/Public/MikeHole.WindowsPhone.Behaviours.zip" target="_blank">here</a>. (if you have any problems downloading this then please send me an email at: mike [at] mikehole [dot] com and I will send it on).</p>
<p>If you can think of any ways that the behaviour can be improved or know of any better solutions then feel free to leave a comment.</p>
<p>Cheers,</p>
<p>Mike </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=111&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2011/01/12/wp7-text-boxes-onenter-my-1st-behaviour/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>

		<media:content url="http://mikehole.files.wordpress.com/2011/01/2011-01-12-13h45_15_thumb.png" medium="image">
			<media:title type="html">2011-01-12 13h45_15</media:title>
		</media:content>
	</item>
		<item>
		<title>I made this &#8230;</title>
		<link>http://mikehole.com/2010/10/22/i-made-this/</link>
		<comments>http://mikehole.com/2010/10/22/i-made-this/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 06:36:07 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[Phone]]></category>
		<category><![CDATA[WP7]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Showing off]]></category>
		<category><![CDATA[Windows Phone]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/?p=79</guid>
		<description><![CDATA[Pathfinder has finally hit the app marketplace for the UK.  We will be posting a video of some of the features very soon. I am quite proud to say that this app went from being a simple ‘featured’ application to being a partner showcase application and was included on review devices that were handed out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=79&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://social.zune.net/redirect?type=phoneApp&amp;id=b74123ac-12da-df11-a844-00237de2db9e">Pathfinder </a>has finally hit the app marketplace for the UK.  We will be posting a video of some of the features very soon.<a href="http://mikehole.files.wordpress.com/2010/10/2010-10-24-17h05_10.png"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;padding-top:0;border:0;" title="2010-10-24 17h05_10" src="http://mikehole.files.wordpress.com/2010/10/2010-10-24-17h05_10_thumb.png?w=590&#038;h=430" border="0" alt="2010-10-24 17h05_10" width="590" height="430" /></a></p>
<p>I am quite proud to say that this app went from being a simple ‘featured’ application to being a partner showcase application and was included on review devices that were handed out to journalist for review.</p>
<p><strong>What&#8217;s next</strong></p>
<p>Well that would be telling but there were a couple of features that didn’t make this version that we are aiming to get into the app in the next release (which will happen soon). These will all be aimed around make the app a lot more social.</p>
<p>Our plan is to create a community around this application where people who contribute a lot can find themselves being featured as a Pathfinder so therefore social is key.</p>
<p><strong>Thanks (the main reason I wrote this).</strong></p>
<p>I am afraid that the next bit is going to sound like a bit of an Oscar award speech but there are certain people that I would like to thank for providing help during the development process.</p>
<p>1st off is <a href="http://twitter.com/Howard_Scott" target="_blank">Howard Scott</a> for bringing the client on board and providing the idea. Then there is the client Snow+Rock for trusting us.</p>
<p>After the initial idea comes the designer James Bearne who created that stunning look. All of which was done in Illustrator I had to carve the XAML myself. I hope I did your designs justice.</p>
<p>Although I was the only developer involved in putting this app together i did have some help from twitter, it’s a great medium for finding answers a special mention to <a href="http://twitter.com/rschu" target="_blank">@rschu</a>, <a href="http://twitter.com/gcaughey" target="_blank">@gcaughey</a> and <a href="http://twitter.com/#!/mrlacey" target="_blank">@mrlacey</a> for provide a few pointers.</p>
<p>There is one person who in the scheme of things in regards to the whole windows phone 7 launch that I have a great deal of gratitude to offer, that’s <a href="http://wotudo.net/" target="_blank">Paul Foster</a>.</p>
<p>I don’t know where the guy gets his energy from or how he kept himself going but Paul has been through the mill from having to put together those 50 demo devices over night to having to put up with our demands during the day then ‘corps’ demands during the night.</p>
<p>So thanks everyone (and to anybody I have missed). I sure can’t wait until the next project comes along.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=79&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2010/10/22/i-made-this/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>

		<media:content url="http://mikehole.files.wordpress.com/2010/10/2010-10-24-17h05_10_thumb.png" medium="image">
			<media:title type="html">2010-10-24 17h05_10</media:title>
		</media:content>
	</item>
		<item>
		<title>Launch day shopping&#8230;</title>
		<link>http://mikehole.com/2010/10/21/launch-day-shopping/</link>
		<comments>http://mikehole.com/2010/10/21/launch-day-shopping/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 12:23:31 +0000</pubDate>
		<dc:creator>mikehole</dc:creator>
				<category><![CDATA[Phone]]></category>
		<category><![CDATA[WP7]]></category>
		<category><![CDATA[WP7 Windows Phone]]></category>

		<guid isPermaLink="false">https://mikehole.wordpress.com/2010/10/21/launch-day-shopping/</guid>
		<description><![CDATA[Just had a mooch around Cardiff to see what’s out there in WP7 land and here is what I found: Orange Posters in the windows and the shops have had stock yay! One shop was given one -&#160; which they had sold &#8211; the other shop has 12 (they had a couple still left so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=78&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://mikehole.files.wordpress.com/2010/10/imag0324.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;float:left;border-top:0;border-right:0;padding-top:0;margin:0 11px 0 0;" title="IMAG0324" border="0" alt="IMAG0324" align="left" src="http://mikehole.files.wordpress.com/2010/10/imag0324_thumb.jpg?w=178&#038;h=396" width="178" height="396" /></a>Just had a mooch around Cardiff to see what’s out there in WP7 land and here is what I found:</p>
<p><strong>Orange</strong></p>
<p>Posters in the windows and the shops have had stock yay! One shop was given one -&#160; which they had sold &#8211; the other shop has 12 (they had a couple still left so I managed to have a play with the Mozart which remains my phone of choice).</p>
<p><strong>O2</strong></p>
<p>They knew about the pones, no promotional material in the shop but they did check to see if they had any in … which they didn’t.</p>
<p><strong>T-Mobile</strong></p>
<p>The guy in the store knew about the phones, didn’t expect any in soon (they are still waiting fro the HTC desire) and he said that if you like win mob then stick with it. But he wasn’t sure about it’s viability in regards to apps.</p>
<p>So I gave him a quick demo of my developer mule <img style="border-style:none;" class="wlEmoticon wlEmoticon-winkingsmile" alt="Winking smile" src="http://mikehole.files.wordpress.com/2010/10/wlemoticon-winkingsmile.png?w=575" />. I think I completely changed his mind on that one. Made his day to see one I think (he liked our app too).</p>
<p>In conclusion I would say that like AT&amp;T in the states Microsoft have a great ally in Orange and thanks to them for jumping right on the launch bandwagon. seeing <a href="http://twitpic.com/2zglk5" target="_blank">this</a> this morning really made me smile.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikehole.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikehole.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikehole.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikehole.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikehole.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikehole.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikehole.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikehole.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikehole.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikehole.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikehole.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikehole.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikehole.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikehole.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikehole.com&amp;blog=13039743&amp;post=78&amp;subd=mikehole&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikehole.com/2010/10/21/launch-day-shopping/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4a4ea83363a7e21f40c8e807f6d78869?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikehole</media:title>
		</media:content>

		<media:content url="http://mikehole.files.wordpress.com/2010/10/imag0324_thumb.jpg" medium="image">
			<media:title type="html">IMAG0324</media:title>
		</media:content>

		<media:content url="http://mikehole.files.wordpress.com/2010/10/wlemoticon-winkingsmile.png" medium="image">
			<media:title type="html">Winking smile</media:title>
		</media:content>
	</item>
	</channel>
</rss>
