<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Peter Foot</title><link>http://mobileworld.appamundi.com/blogs/peterfoot/default.aspx</link><description>Device Application Development MVP</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 (Build: 30912.2823)</generator><image><link>http://peterfoot.net</link><url>http://peterfoot.net/images/mugshot.jpg</url><title>Peter Foot</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/PeterFoot" type="application/rss+xml" /><item><title>Live Mesh for Windows Mobile</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/438215706/live-mesh-for-windows-mobile.aspx</link><pubDate>Fri, 31 Oct 2008 16:32:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:23</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=23</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/10/31/live-mesh-for-windows-mobile.aspx#comments</comments><description>&lt;p&gt;The Windows Mobile client for Live Mesh is now available. You can download it from your device from &lt;a href="http://m.mesh.com"&gt;http://m.mesh.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://mobileworld.appamundi.com/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.21.00/Mesh1.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve just installed it onto my phone and have been taking a look. On the desktop the Mesh client is quite tightly integrated into the explorer shell - it adds an extra pane alongside your folder windows showing the status of your synchronised folders. On devices the same level of integration is not possible (nor is there the screen real-estate). Therefore the mobile Mesh client runs as a separate application allowing you to manage which folders are synchronised. If you select a folder it opens separately in File Explorer to show the contents, you don&amp;#39;t get any fancy icons to show the synchronisation status. The main menu in the Mesh client provides access to the members and news of that folder - the content you would normally see in the Mesh pane. This opens in an Internet Explorer window and is actually a mobile formatted version of the mesh web application. Also from the menu you can force a manual synchronisation and change the settings for automatic synchronisation.&lt;/p&gt;
&lt;p&gt;In summary it is quite a simple client and does a good job of extending your Mesh files onto your mobile device. One of the key features is synchronisation of photos and it will automatically setup the \My Documents\My Pictures folder to synchronise with a &amp;quot;Mobile Pictures&amp;quot; folder in your Mesh. Unfortunately this wasn&amp;#39;t immediately useful to me as I save photos to the storage card, but it&amp;#39;s simple enough to setup Synchronisation of any other folder from the device.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=23" width="1" height="1"&gt;</description><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/10/31/live-mesh-for-windows-mobile.aspx</feedburner:origLink></item><item><title>Get the name of your executing .exe</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/373932044/get-the-name-of-executing-exe.aspx</link><pubDate>Mon, 25 Aug 2008 03:11:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:21</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=21</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/08/24/get-the-name-of-executing-exe.aspx#comments</comments><description>&lt;p&gt;The Compact Framework doesn&amp;#39;t support Assembly.GetEntryAssembly to determine the launching .exe. You can instead P/Invoke the native GetModuleFileName function like so:-&lt;/p&gt;
&lt;p&gt;byte[] buffer = new byte[MAX_PATH * 2];&lt;/p&gt;
&lt;p&gt;int chars = GetModuleFileName(IntPtr.Zero, buffer, MAX_PATH);&lt;/p&gt;
&lt;p&gt;if (chars &amp;gt; 0)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;string assemblyPath = System.Text.Encoding.Unicode.GetString(buffer, 0, chars * 2);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;Where MAX_PATH is defined in the Windows CE headers as 260. The P/Invoke declaration for GetModuleFileName looks like this:-&lt;/p&gt;
&lt;p&gt;[DllImport(&amp;quot;coredll.dll&amp;quot;, SetLastError = true)]&lt;/p&gt;
&lt;p&gt;private static extern int GetModuleFileName(IntPtr hModule, byte[] lpFilename, int nSize);&lt;/p&gt;
&lt;p&gt;The function expects a HMODULE - a&amp;nbsp;handle to a native module. However passing IntPtr.Zero here indicates we want the&amp;nbsp;module which created the process which is our .exe. This&amp;nbsp;code will always return the path of the calling .exe regardless of if it is in a utility dll, or even a GAC assembly located in the \Windows folder.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=21" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/Compact+Framework/default.aspx">Compact Framework</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/08/24/get-the-name-of-executing-exe.aspx</feedburner:origLink></item><item><title>Home and Visiting Clocks in Professional Edition</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/364047514/home-and-visiting-clocks-in-professional-edition.aspx</link><pubDate>Wed, 13 Aug 2008 16:47:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:20</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=20</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/08/13/home-and-visiting-clocks-in-professional-edition.aspx#comments</comments><description>&lt;p&gt;In Professional Edition (Pocket PC) devices the Clock control panel allows you to set a home timezone and a visiting zone and lets you toggle between them. If you need to retrieve the current settings they are stored in the registry in a key called HKEY_LOCAL_MACHINE\Software\Microsoft\Clock in a binary&amp;nbsp;value called &amp;quot;AppInfo&amp;quot;. Here is&amp;nbsp;breakdown of that data:-&lt;/p&gt;
&lt;p&gt;00,00,00,00,31,00,00,00,55,00,00,00,00,00,00,00,01,00,00,00,80,01,00,00,be,00,00,00,00,00,00,00,00,00,00,00&lt;/p&gt;
&lt;p&gt;The first 4 bytes contains an integer which is 1 if in the home zone, and 0 if visiting.&lt;/p&gt;
&lt;p&gt;The next 4 bytes always seems to be 0x31&lt;/p&gt;
&lt;p&gt;The next 4 bytes are the index into the timezone collection of the home zone (In this example 85 GMT)&lt;/p&gt;
&lt;p&gt;The next 4 bytes are unused&lt;/p&gt;
&lt;p&gt;The next 4 bytes indicate whether to use DST (In this example 1 true)&lt;/p&gt;
&lt;p&gt;The next 4 bytes are always 0x180&lt;/p&gt;
&lt;p&gt;The next 4 bytes are the index into the timezone collection of the visiting zone (in this example 190 - New Delhi)&lt;/p&gt;
&lt;p&gt;The next 4 bytes are unused&lt;/p&gt;
&lt;p&gt;The next 4 bytes indicate whether to use DST in visiting zone (In this example 0 false)&lt;/p&gt;
&lt;p&gt;I suspect that the unused values may be connected to the old Cities feature which was originally in the control panel but removed with PPC2003. You may be wondering how to get the timezone information at the specified indexes - in Windows Mobile they are not all stored in the registry as on other Windows CE flavours. They are accessible through POOM - &lt;a target="_blank" href="http://msdn.microsoft.com/en-us/library/ms860764.aspx"&gt;IPOutlookApp.GetTimeZoneFromIndex&lt;/a&gt;, or in managed code in &lt;a target="_blank" href="http://inthehand.com/content/Mobile.aspx"&gt;Mobile In The Hand&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=20" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/Windows+Mobile/default.aspx">Windows Mobile</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/08/13/home-and-visiting-clocks-in-professional-edition.aspx</feedburner:origLink></item><item><title>SQL Compact 3.5 SP1 RTM</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358569584/sql-compact-3-5-sp1-rtm.aspx</link><pubDate>Thu, 07 Aug 2008 16:49:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:17</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=17</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/08/07/sql-compact-3-5-sp1-rtm.aspx#comments</comments><description>&lt;p&gt;To coincide with the RTM release of SQL Server 2008 the SQL Compact Team have delivered Service Pack 1 for v3.5. This includes Entity Framework support and a native 64bit version. Steve Lasker has the details:-&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/stevelasker/archive/2008/08/07/sql-server-compact-3-5-sp1-released.aspx"&gt;http://blogs.msdn.com/stevelasker/archive/2008/08/07/sql-server-compact-3-5-sp1-released.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Meanwhile SQL Server 2008 RTM is available already online for both MSDN&amp;nbsp;and TechNet subscribers.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=17" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/Data/default.aspx">Data</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/08/07/sql-compact-3-5-sp1-rtm.aspx</feedburner:origLink></item><item><title>APPA Mundi Awarded Microsoft Certified Partner Status</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262609/appa-mundi-awarded-microsoft-certified-partner-status.aspx</link><pubDate>Fri, 01 Aug 2008 13:17:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:1</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=1</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/08/01/appa-mundi-awarded-microsoft-certified-partner-status.aspx#comments</comments><description>APPA Mundi has received Certified Partner status within the Microsoft Partner Program along with the Mobility Solutions competency. This achievement showcases APPA Mundi’s expertise in creating mobile solutions based on Microsoft technologies. Read Full...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/08/01/appa-mundi-awarded-microsoft-certified-partner-status.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=1" width="1" height="1"&gt;</description><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/08/01/appa-mundi-awarded-microsoft-certified-partner-status.aspx</feedburner:origLink></item><item><title>Implement FindString for a ComboBox</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262611/implement-findstring-for-a-combobox.aspx</link><pubDate>Thu, 10 Jul 2008 15:25:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:2</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=2</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/07/10/implement-findstring-for-a-combobox.aspx#comments</comments><description>The .NETCF ComboBox control doesn&amp;#39;t have the FindStrind method which is present on the desktop however this is just a wrapper for a windows message supported by the native control so it is possible to wrap it quite easily in .NETCF 2.0 and above....(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/07/10/implement-findstring-for-a-combobox.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=2" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/NETCF/default.aspx">NETCF</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/07/10/implement-findstring-for-a-combobox.aspx</feedburner:origLink></item><item><title>Using RemoteWipe</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262614/using-remotewipe.aspx</link><pubDate>Fri, 20 Jun 2008 09:51:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:3</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=3</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/06/20/using-remotewipe.aspx#comments</comments><description>With Windows Mobile 5.0 AKU2.0 (Messaging &amp;amp; Security Feature Pack) a new feature was implemented called RemoteWipe. This allowed an administrator to remotely wipe a device if it may have got lost and was designed to remove all sensitive data from...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/06/20/using-remotewipe.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=3" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/Windows+Mobile/default.aspx">Windows Mobile</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/06/20/using-remotewipe.aspx</feedburner:origLink></item><item><title>Session Materials from Tech-Ed</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262615/session-materials-from-tech-ed.aspx</link><pubDate>Tue, 10 Jun 2008 11:20:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:4</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=4</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/06/10/session-materials-from-tech-ed.aspx#comments</comments><description>I&amp;#39;ve posted a number of links relevant to the session I gave last week on our Tech-Ed page here . This includes the sample code which is an additional selection of samples than those which appear in the 32feet.NET package itself. The session covered...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/06/10/session-materials-from-tech-ed.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=4" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/Events/default.aspx">Events</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/06/10/session-materials-from-tech-ed.aspx</feedburner:origLink></item><item><title>Chinese Translation of Microsoft Mobile Development Handbook now available</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262618/chinese-translation-of-microsoft-mobile-development-handbook-now-available.aspx</link><pubDate>Fri, 16 May 2008 10:57:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:5</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=5</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/05/16/chinese-translation-of-microsoft-mobile-development-handbook-now-available.aspx#comments</comments><description>I just got word from David Chang that the Chinese translation of our book is now complete. You can order it from Amazon.cn here:- http://www.amazon.cn/mn/detailApp?pageletid=newpromote&amp;amp;prodid=bkbk820876...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/05/16/chinese-translation-of-microsoft-mobile-development-handbook-now-available.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=5" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/Books/default.aspx">Books</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/05/16/chinese-translation-of-microsoft-mobile-development-handbook-now-available.aspx</feedburner:origLink></item><item><title>New Mobile Development Team Blog</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262619/new-mobile-development-team-blog.aspx</link><pubDate>Wed, 30 Apr 2008 08:50:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:6</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=6</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/30/new-mobile-development-team-blog.aspx#comments</comments><description>Amit Chopra&amp;#39;s Visual Studio for Devices team has grown to include Silverlight Mobile and .NETCF and the team have a new blog to cover all these areas. I&amp;#39;m looking forward to some great content from the team:- http://blogs.msdn.com/mobiledev/...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/30/new-mobile-development-team-blog.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=6" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/Blogs/default.aspx">Blogs</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/30/new-mobile-development-team-blog.aspx</feedburner:origLink></item><item><title>Disable Windows Mobile 6.1 Threaded SMS View</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262620/disable-windows-mobile-6-1-threaded-sms-view.aspx</link><pubDate>Tue, 08 Apr 2008 10:12:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:7</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=7</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/08/disable-windows-mobile-6-1-threaded-sms-view.aspx#comments</comments><description>There may be an occasion where you want to restore the original chronological view for the SMS Inbox rather than the new threaded view. One example is where a system programmatically moves or inserts SMS messages into the system because these are not...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/08/disable-windows-mobile-6-1-threaded-sms-view.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=7" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/Windows+Mobile/default.aspx">Windows Mobile</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/08/disable-windows-mobile-6-1-threaded-sms-view.aspx</feedburner:origLink></item><item><title>Antialisasing and .NETCF</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262621/antialisasing-and-netcf.aspx</link><pubDate>Wed, 02 Apr 2008 15:19:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:8</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=8</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/02/antialisasing-and-netcf.aspx#comments</comments><description>On the newsgroup, a developer asked if it was possible to use antialiasing on a Label font. By default on Windows Mobile the text does not use antialiasing unless you turn on the global ClearType option under Settings &amp;gt; System &amp;gt; Screen &amp;gt; ClearType...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/02/antialisasing-and-netcf.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=8" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/NETCF/default.aspx">NETCF</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/02/antialisasing-and-netcf.aspx</feedburner:origLink></item><item><title>New Windows Mobile 6.1 Screen Resolutions</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262624/new-windows-mobile-6-1-screen-resolutions.aspx</link><pubDate>Wed, 02 Apr 2008 10:45:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:9</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=9</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/02/new-windows-mobile-6-1-screen-resolutions.aspx#comments</comments><description>The release of Windows Mobile 6.1 brings a number of improvements for users but retains the same SDK and libraries as 6. The devices ship with .NETCF 2.0 SP2 in ROM. This release adds additional screen resolutions to both the Professional (touchscreen...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/02/new-windows-mobile-6-1-screen-resolutions.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=9" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/Windows+Mobile/default.aspx">Windows Mobile</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/04/02/new-windows-mobile-6-1-screen-resolutions.aspx</feedburner:origLink></item><item><title>Exception Messages on .NETCF v3.5</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262625/exception-messages-on-netcf-v3-5.aspx</link><pubDate>Thu, 06 Mar 2008 14:48:00 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:10</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=10</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/03/06/exception-messages-on-netcf-v3-5.aspx#comments</comments><description>Martijn Hoogendoorn provides a description of how to avoid the message:- &amp;quot; An error message is available for this exception but cannot be displayed because these messages are optional and are not currently installed on this device. Please install...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/03/06/exception-messages-on-netcf-v3-5.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=10" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/NETCF/default.aspx">NETCF</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/03/06/exception-messages-on-netcf-v3-5.aspx</feedburner:origLink></item><item><title>How To: Get System Power State Name and Flags</title><link>http://feeds.feedburner.com/~r/PeterFoot/~3/358262626/how-to-get-system-power-state-name-and-flags.aspx</link><pubDate>Sat, 23 Feb 2008 16:29:11 GMT</pubDate><guid isPermaLink="false">989b12f5-6f26-47d9-9f0d-67fe982b88db:11</guid><dc:creator>Peter Foot</dc:creator><slash:comments>0</slash:comments><wfw:commentRss>http://mobileworld.appamundi.com/blogs/peterfoot/rsscomments.aspx?PostID=11</wfw:commentRss><comments>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/02/23/how-to-get-system-power-state-name-and-flags.aspx#comments</comments><description>A question came up on our forums and so I investigated writing a wrapper for the GetSystemPowerState API function. This allows you to retrieve the power state name, and also a bitmask of flags - Is the backlight on, is the device password protected etc...(&lt;a href="http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/02/23/how-to-get-system-power-state-name-and-flags.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://mobileworld.appamundi.com/aggbug.aspx?PostID=11" width="1" height="1"&gt;</description><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/NETCF/default.aspx">NETCF</category><category domain="http://mobileworld.appamundi.com/blogs/peterfoot/archive/tags/How+To/default.aspx">How To</category><feedburner:origLink>http://mobileworld.appamundi.com/blogs/peterfoot/archive/2008/02/23/how-to-get-system-power-state-name-and-flags.aspx</feedburner:origLink></item></channel></rss>
