windows-mobile

GPS library for .NET compact framework

怎甘沉沦 提交于 2019-12-03 03:56:54
问题 I'm thinking of writing simple application for Windows Mobile devices, where user could simply enter destination coordinates, and the app would calculate distance and show direction to the destination. But I haven't found any Free , preferably Open Source library with simple API to work with GPS . 回答1: I recently used open source SharpGPS. It's supposed to support more devices than the example in the SDK, but both solutions work on all my hardware. SharpGPS did make it easier to access more

UI Components for Windows Mobile Applications (.NET Compact Framework)

我是研究僧i 提交于 2019-12-03 03:54:59
问题 Applications which run on mobile devices have special user interface requirements. I think Apple did a great job introducing innovative controls on the iPhone/iPod touch platform. Now, I have to design an application for the Windows Mobile platform using the .NET Compact Framework (Visual Studio 2008). I wonder if there are some commercial or open source UI control sets available which are similar to the iPhone / iPod touch UI elements: Scrolling panels based on gestures Instead of a

Windows Mobile - What scripting platforms are available?

白昼怎懂夜的黑 提交于 2019-12-03 03:35:00
We have a number of users with Windows Mobile 6 and need to apply minor changes. eg. update a registry setting. One option is push and execute an executable file using our device management software. I'd like this to be a little more friendly for the admins who are familiar with scripting in VBScript/JScript etc. What are the options for scripting on Windows Mobile devices? Once option that the devs over at xda-developers seem to enjoy is Mortscript I have never bothered to use it, but I have used many cab installers that distribute mortscript so that they can do various tasks I work on

Can I write native iPhone, Android, Windows, Blackberry apps using Python? [duplicate]

坚强是说给别人听的谎言 提交于 2019-12-03 03:03:19
问题 This question already has answers here : Is there a way to run Python on Android? (25 answers) Closed 6 years ago . Is possible to develop Android and iOS mobile applications in Python? I am a newcomer in mobile applications and want to develop mobile applications in Python. 回答1: Yes you can use kivy This is a nice cross platform python framework which works for Android, Win7, Linux, Mac. iOS is possibile but very trivial as Apple doesn't allow scripting. And for Android Google provides

Building Compact Framework applications with VS2010 (without VS2005)

99封情书 提交于 2019-12-03 00:19:10
I want to perform a .NET CF 2.0 build using VS2010. I know it's not supported "normnally," but I've seen this answer: ( .NET Compact Framework with Visual Studio 2010? ) ...and I want to use that approach. The blog post cited there says I need to modify the .csproj files for the .NET CF projects, to point to a particular Microsoft.CompactFramework.Common.targets . But I don't have that file. I figured I needed to install the Windows Mobile 6 Standard SDK to get it. I tried installing it and get this: I have seen this question: Windows Mobile 6 Standard SDK Refresh install issue on Visual

Code profiling / performance analysis tools for Windows CE/Mobile

放肆的年华 提交于 2019-12-02 21:18:24
What tools do you know, other than those in Visual Studio, to analyze performance bottlenecks in a Windows CE/Mobile application? I'm looking for something like AQTime for CE/Mobile, to profile C/C++ applications compiled to native code. I haven't found any such tools for WindowsMobile for native development. The closest I've found is the EnTrek toolset (CodeSnitch / ProcMan), but they aren't really profiling tools. http://www.entrek.com/products.htm What we did do is build own own profiling support into our own products using the Vistual Studio "/callcap" switch for VC++. Using that switch

Best way to manage network state in Windows Mobile

怎甘沉沦 提交于 2019-12-02 17:21:40
I have a .NET Compact Framework 3.5 program that is used as a 'Occasionally Connected' line of business (LOB) application. If it can see an online webservice, it will use that for data access, but if network connection is lost it will use a local cache. What is the best way to handle all of the connection options and state changes? OpenNetCF's ConnectionManager class? Microsoft.WindowsBile.State.SystemState? API calls? How do you get it to understand the difference between WiFi, Cradle, and GPRS and use the best method available? Anyone have any guidance on this? I just create a simple shared

GPS library for .NET compact framework

六月ゝ 毕业季﹏ 提交于 2019-12-02 17:20:35
I'm thinking of writing simple application for Windows Mobile devices, where user could simply enter destination coordinates, and the app would calculate distance and show direction to the destination. But I haven't found any Free , preferably Open Source library with simple API to work with GPS . Guido García I recently used open source SharpGPS . It's supposed to support more devices than the example in the SDK, but both solutions work on all my hardware. SharpGPS did make it easier to access more structured information, such as satellites in view and where they are, and has a brilliant

Windows Mobile App - Play Stream Over MMS Protocol?

社会主义新天地 提交于 2019-12-02 17:07:13
问题 NOTE: This question is being reasked because I accidentally clicked Community Wiki in the previous one, and obviously that didn't provide enough incentive in the form of reputation for people to answer it. Here is a link to the old question, please do not duplicate those answers (they weren't exactly helpful anyway): Link to Original Question Now here's the question... I'm trying to write a Windows Mobile app targeting Windows Mobile 6.x that will stream an internet radio stream delivered via

Can I write native iPhone, Android, Windows, Blackberry apps using Python? [duplicate]

本秂侑毒 提交于 2019-12-02 16:36:44
This question already has an answer here: Is there a way to run Python on Android? 25 answers Is possible to develop Android and iOS mobile applications in Python? I am a newcomer in mobile applications and want to develop mobile applications in Python. Yes you can use kivy This is a nice cross platform python framework which works for Android, Win7, Linux, Mac. iOS is possibile but very trivial as Apple doesn't allow scripting. And for Android Google provides something called ASE (Android Scripting Environment) which allows scripting languages (Python included) to run on Android. More details