windows-mobile

sending USSD in C#?

让人想犯罪 __ 提交于 2019-12-03 16:41:47
I want to write a simple c# application runs on windows mobile 6 which can send USSD messages Is there any library that could help me in doing this?? or is there any examples that explains how to use lineSendUSSD thanks You have to P/Invoke to access the phones TAPI functions. Have a look at this thread: Windows Mobile Developer Center 来源: https://stackoverflow.com/questions/1725860/sending-ussd-in-c

Long-term potential of iPhone/Windows Mobile development platforms

删除回忆录丶 提交于 2019-12-03 16:39:24
It seems that Apple has so far gone the furthest of any mobile platform in creating a good all-around developer ecosystem (SDK, app distribution, monetization, etc). However, reading the comments from previous SO questions on mobile development (e.g. this and this ), certain criticisms seem to pop up, such as the following: Objective-C, though a nice language, is not really used outside of Apple products. The development environment and tools do not match what Microsoft has to offer with Visual Studio and .NET. So, I am wondering about the viability of Apple's ecosystem in the longer term (i.e

How do I solve the .NET CF exception “Can't find PInvoke DLL”?

若如初见. 提交于 2019-12-03 16:37:30
This is to all the C# gurus. I have been banging my head on this for some time already, tried all kinds of advice on the net with no avail. The action is happening in Windows Mobile 5.0. I have a DLL named MyDll.dll. In the MyDll.h I have: extern "C" __declspec(dllexport) int MyDllFunction(int one, int two); The definition of MyDllFunction in MyDll.cpp is: int MyDllFunction(int one, int two) { return one + two; } The C# class contains the following declaration: [DllImport("MyDll.dll")] extern public static int MyDllFunction(int one, int two); In the same class I am calling MyDllFunction the

Windows Mobile - Compact Framework program as a service?

匆匆过客 提交于 2019-12-03 16:36:59
What is the best way to have my C# Compact Framework program running in the background on a Windows Mobile device ? I need to respond to different events, such as a text message arriving with a specific content. I would like not to start up any UI when the process is started, but just run in the background until UI is needed. How can this be done ? Just create the app as a Console app. If you need a message pump, you need to call Run without any parameters, and the CF doesn't have that. OpenNETCF's Application2 class in the SDF does. At that point you can raise a UI any time by creating and

Web Browser support Windows Embedded vs Windows CE vs Windows Mobile? [closed]

蹲街弑〆低调 提交于 2019-12-03 15:59:36
I am developing a web based inventory solution for a client and there will be handheld mobile computers involved. I've never developed a web app that has been run on a browser on one of these devices. The devices we are looking at have one of the following OS: Windows Embedded 6.5 Windows CE 5.0 or 6.0 Windows Mobile My questions are: Do all of these come with some version of Internet Explorer If so, does that version of IE support things like: javascript? JQuery (UI, AJAX calls) Any experience or recommendations on any of these OS choices, pros, cons? No, they do not have the same version of

How can I use OpenStreetMap in my Compact Framework App?

怎甘沉沦 提交于 2019-12-03 15:53:30
Does anyone know, how I can use OpenStreetMap inside my Compact Framework application? Is there a Framework or something like that? All I can find in their wiki is how to contribute to their project and to user their software to map data. But I want to use their maps to show the users location inside my own app. I could not find anything about using their web service or whatever I have to use to show their maps inside my application. There is a project on Google Code that wants to create a .NET library for the OpenStreetMap API. The website states that there currently is an alpha release, so

DataMember could not be found

蓝咒 提交于 2019-12-03 14:49:07
As I have done my research regarding this problem of mine, I still have no luck in solving my error of Error 1 The type or namespace name 'DataMember' could not be found (are you missing a using directive or an assembly reference?) I have come across a solution stating that I should reference System.Runtime.Serialization but still I am having no luck even when add reference to it. Here is my code: using System; using System.Linq; using System.Collections.Generic; using System.Text; using System.Runtime.Serialization; using System.Xml.Serialization; namespace WebServApp { [Serializable] public

Windows Mobile - What scripting platforms are available?

一曲冷凌霜 提交于 2019-12-03 13:34:18
问题 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? 回答1: Once option that the devs over at xda-developers seem to enjoy is Mortscript I have never bothered to use it, but I

Running background services on a PocketPC

十年热恋 提交于 2019-12-03 10:10:33
问题 I've recently bought myself a new cellphone, running Windows Mobile 6.1 Professional. And of course I am currently looking into doing some coding for it, on a hobby basis. My plan is to have a service running as a DLL, loaded by Services.exe. This needs to gather som data, and do som processing at regular intervals (every 5-10 minutes). Since I need to run this at regular intervals, it is a bit of a problem for me, that the system typically goes to sleep (suspend) after a short period of

ListView Headers Don't Show Up

删除回忆录丶 提交于 2019-12-03 09:28:39
I am doing a windows mobile application 6.1. I dragged in a listview and went to columns and added columns to my list view. When I run the listview they do not show up. I then tried to add them through C# code on page load with the follow code. ColumnHeader header = new ColumnHeader(); header.Text = "gkgag"; header.Width = 100; header.TextAlign = HorizontalAlignment.Center; listView1.Columns.Add(header); this does not work either. Why don't they show up? You must use detailed view for column headers to be visible. listView1.View = View.Details; If that´s not the problem, column headers might