Skip to main content

Writing Your own GPS application for Windows Mobile using .NET C# OR Visual C++

Hello Friends / Folks,

I am excited to tell you that i am going to bring you one of the most interesting article on my own Blog which is None other than "Writing Your own GPS application for Windows Mobile using .NET C#".
Watch out this space for more information and do let me know if people have any concerns towards the language. Basically i am giving two options w.r.t language .. i can have sample application written in Visual C++ (Native code) OR .NET C# (Managed code). If i get any request from people then i shall go ahead and implement based on the readers request otherwise it is going to be .NET C# by default.

Please do send me request by 11th Aug 2008.

One more exciting thing is, i am planning to come up with "One exciting app with source per week" Program. I shall let you details very soon ......... keep watching this space for more information.

Comments

Anonymous said…
Genial fill someone in on and this enter helped me alot in my college assignement. Thank you for your information.

Popular posts from this blog

Android ANR Time, UI Thread

Useful Android Performance / Stability debugging info  1. ANR Waiting times: Performing heavy I/O , Network access or orher heavy operations on UI thread ?? A BIG NO NO ..you are inviting ANR.   No response to an input event (such as key press or screen touch events) within 5 seconds. A  BroadcastReceiver  hasn't finished executing within 10 seconds.

WinCE / PocketPC / Windows Mobile Power Battery Timeout - Solution

Hello Folks, I am back with yet another WinCE / Windows Mobile Solution this time it is something exciting and it is on Power Batter Suspend timeout related stuff. It is really challenging task to optimize battery life of any embedded device. Sometimes we want to control back light and battery suspend related activities through our program. OK .. here is simple question how do you control Back light, suspend timeout .. etc event through program ? To answer this question one has to understand "How WinCE operates w.r.t Power driver and what exactly happens behind the scenes". To simplify things ... i am going to divide whole things in three parts 1. WinCE OS Part whihc include Power / Battery drivers. 2. Application 3. Registry Registry : It is the place where all values gets stored i.e it acts as media for storing and retrieving values. I hope it is clear that Registry is nothing but global storage media and it has NO power to trigger anything. So that means it is of new us...

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...