Skip to main content

Updated Designed for Windows Mobile Program Handbooks available


In order to use the “Designed For Windows Mobile” logo in your marketing material your application must be submitted and pass a battery of tests perscribed by Microsoft.

The newly revised handbooks that cover applications for the new “Designed For Windows Mobile 6″ logo(s) are now available for download.

Designed for Windows Mobile 6 Professional Software Application handbook

Designed for Windows Mobile 6 Standard Software Application handbook

On an initial flick through the handbooks there doesn’t appear to be many significant changes. However Microsoft has got more perscriptive in some areas such as deployment options for MFC based applications (which must be statically linked for logo certification).

If you’re starting out in Windows Mobile development these handbooks are a great guide for creating applications which have a native look and feel to them.

I encourage every developer to strive (where possible) to make their applications as compatible with the “Designed For Windows Mobile” certification requirements as possible. Your users will have an easier time utilising your application and will already be familiar with it’s basic operation. It’s also easier to pass the tests some time down the track if your application has been designed within them in mind from it’s inception.

Comments

Popular posts from this blog

What is the Current Directory in Windows CE & Windows Mobile ?

Lately i encountered  a situation where i had to find the current directory from where my application is running and all my config files reside. Question is "How do I find the current directory?" on Windows CE/Mobile devices. Desktop / PC it is just piece of cake but Windows CE / Mobile devices don't have a concept of a current directory.  Which means all pats are absolute and there is no concept called relative path. Due to lack of relative paths most of the files are loaded to the "Windows" directory and that is how Windows directory is crowded. Alternatively you can hard code directory path and insist user to load files always there. But i hate to hard code values or copy files to Windows directory.  So this has triggered to find a solution to identify my current directory. Since there is no concept of a current directory on a Windows CE / Windows Mobile device how would one locate a resource for which only a relative path is known?  That is what following c...

Android Bluedroid debugging

Android Bluedroid Debugging  i.e New BT Stack from Android Community: Wow ... its been more than 2 years i updated my blog ... Am i too lazy or too busy or combination of both. Combination of both -:).  Anyways today i see a need to update my blog with some important info regarding Bluedroid debugging. Bluedroid is the latest and greatest Bluetooth stack from Android developed by Google & Broadcom jointly. So obviously Google does not have interest or resources to maintain two stacks hence they are going to drop famous BlueZ stack for good reasons.  BlueZ stack comes with lot of good tools like hcidump for debugging and i see all those tools no more work starting with Android JB MR2 a.k.a 4.3 which has Bluedroid integrated full-fledged.  So Bluedroid got to have new tools or some tools to debug but as usual Google is very poor at documenting the things and they leave finding puzzles to developers out there. SO today's quest is fining the debugging tools ...

Video Tutorial - Programming Languages

As promised earlier that i will try to present some useful information on this blog, Here I present to you my findings on programming language video tutorials . I love C/C++ language and i believe it is mandatory for any enthusiastic programmer to learn C and C++. I found some good introductory video lectures on C++, Java, Perl, and Python. Needles to say i have collected these links from various websites and blog spots. Please post your findings so that others can benefit. Have fun!!!!!!!!!!! C/C++ Related video: ___________________ C++ Programming Tutorial C++ Video Tutorial 1 This video gives a brief introduction to basic commands and you get to make a program that takes 3 numbers that a user inputs and averages them. C++ Video Tutorial 2a C++ Video Tutorial 2b Tutorial going through loops, switch statements, if else statements and applying them to another fairly simple program. C++ Video Tutorial 3 C++ Video Tutorial 4a C++ Video Tutorial 4b Goi...