Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Mobile development in Python

What is the best way to start developing Windows Mobile Professional applications in Python? Is there a reasonable SDK including an emulator? Is it even possible without doing excessive amount of underlaying Windows API calls for UI for instance?

like image 235
VoY Avatar asked Nov 30 '22 13:11

VoY


1 Answers

(I used to write customer apps for Windows Mobile.)

Forget about python. Even if it's technically possible:

  • your app will be big (you'll have to bundle the whole python runtime with your app)
  • your app will use lots of memory (python is a memory hog, relative to C/C++)
  • your app will be slow
  • you wont find any documentation or discussion groups to help you when you (inevitably) encounter problems

Go with C/C++ (or C#). Visual Studio 2005/2008 have decent tools for those (SDK for winmo built-in, debugging on the emulator or device connected through USB), the best documentation is for those technologies plus there are active forums/discussion groups/mailing lists where you can ask for help.

like image 83
Krzysztof Kowalczyk Avatar answered Dec 05 '22 06:12

Krzysztof Kowalczyk