R – In Which Languages Can I Develop For Windows Mobile

programming-languageswindows-mobilewindows-mobile-5.0

Today my new HP iPAQ was delivered at my home, but now I want to know two things before I start any project:

  • In which languages can I develop for it(Windows Mobile 5)?
  • Where can I download this softwares?

Thanks.

Best Answer

Windows Mobile runs the .NET Compact Framework, which will support development in C# and VB.NET. You can also develop for Windows Mobile using MFC/Win32 APIs in C++ or Embedded Visual Basic. At the end of the day it's a stripped-down Win32-based OS, so there are other options, but these are probably the most popular.

Depending on your experience, it will probably be easier to get Visual Studio 2008 and develop in a .NET language, the development experience is pretty nice and there is a built-in emulator in Visual Studio, so you don't need to have a device plugged in unless you are working with device-attached or embedded hardware.

Unfortunately, Visual Studio 2008 Express editions (the free versions) do not support Mobile development, you would need to run a trial version or purchase a license.

Related Topic