Can the Windows Mobile 6 SDK be used to develop programs for older versions of Windows Mobile? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T13:10:09Zhttp://stackoverflow.com/feeds/question/257533http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/257533/can-the-windows-mobile-6-sdk-be-used-to-develop-programs-for-older-versions-of-wi2Can the Windows Mobile 6 SDK be used to develop programs for older versions of Windows Mobile?Chris Charabaruk2008-11-02T22:59:28Z2008-11-03T16:02:55Z
<p>I'd like to develop a few applications for a device I own which has Windows Mobile 2003 on it, but I don't care to hunt down a copy of Visual Studio 2003 to do so. I'd like to know if the Mobile 6 SDK can be used for this purpose.</p>
<p>There's no upgrade path to newer versions of Windows Mobile for this device, and I doubt I'll be getting any newer devices any time soon. Just in case you'd suggest something like that...</p>
http://stackoverflow.com/questions/257533/can-the-windows-mobile-6-sdk-be-used-to-develop-programs-for-older-versions-of-wi/257544#2575440Answer by Matt R for Can the Windows Mobile 6 SDK be used to develop programs for older versions of Windows Mobile?Matt R2008-11-02T23:05:47Z2008-11-02T23:05:47Z<p>You can create programs for WM2003. As long as you can install the .net cf you will be able to run programs compiled under the compact framework. The list of requirements are:
From <a href="http://www.microsoft.com/downloads/details.aspx?familyid=9655156b-356b-4a2c-857c-e62f50ae9a55&displaylang=en" rel="nofollow">microsoft.com</a>:</p>
<blockquote>
<p><strong>System Requirements</strong><br />
* Supported Operating Systems: Windows CE .NET; Windows Mobile 2003 software for Pocket PCs<br />
* Supported Device Operating Systems: Windows Mobile Software for Pocket PC 2003, Windows Mobile 5.0 for PocketPC and Smartphone, Windows CE .NET 5.0 and higher.</p>
</blockquote>
http://stackoverflow.com/questions/257533/can-the-windows-mobile-6-sdk-be-used-to-develop-programs-for-older-versions-of-wi/257568#2575680Answer by Scott Langham for Can the Windows Mobile 6 SDK be used to develop programs for older versions of Windows Mobile?Scott Langham2008-11-02T23:28:26Z2008-11-02T23:28:26Z<p>I don't think it'll work. I think you need the right SDK, and if that means VS2003, that too.</p>
http://stackoverflow.com/questions/257533/can-the-windows-mobile-6-sdk-be-used-to-develop-programs-for-older-versions-of-wi/257578#2575781Answer by Tom for Can the Windows Mobile 6 SDK be used to develop programs for older versions of Windows Mobile?Tom2008-11-02T23:36:26Z2008-11-02T23:36:26Z<p>This totally depends on how you are going to develop this application. If it's just a .NET Compact Framework application you will be fine as long as the right .NET CF version is installed on the device.</p>
<p>If you're going to use C++ and the underlying WinCE API then you would need to make sure that the called functions are supported by WiMo 2003.</p>
http://stackoverflow.com/questions/257533/can-the-windows-mobile-6-sdk-be-used-to-develop-programs-for-older-versions-of-wi/259096#2590962Answer by ctacke for Can the Windows Mobile 6 SDK be used to develop programs for older versions of Windows Mobile?ctacke2008-11-03T16:02:55Z2008-11-03T16:02:55Z<p>You need to code to the least common denominator. Using the WimNo 6 SDK is not the route to go as there is no guarantee of backward compatability and you may end up using features available only in the later OS/Platform. Studio 08 ships with a PPC 2003 SDK, so use that. The apps developed for PPC 03 should be forward compatible (there are edge cases that migh require additionaly ches in your code, but for the most part they work fine).</p>