windows-mobile

ARGOX Mobile Computer SDK

让人想犯罪 __ 提交于 2019-12-11 18:18:05
问题 I search for Argox mobile SDK for .NET C#. I was downlod SDK from http://www.argox.com/content2011.php?sno=0000033&P_ID=53 but it not working, couse it's for c++ I think... ;/ 回答1: I just checked there web site and the internet, there should be some .NET examples installed with the SDK: http://webcache.googleusercontent.com/search?q=cache:zPo5BIItBLEJ:www.argox.com/file.php%3FA_ID%3D213+&cd=3&hl=en&ct=clnk I did not finish to download and install the SDK. If it really does only support C/C++

Upload images in windows mobile 6 in .net

梦想与她 提交于 2019-12-11 17:30:14
问题 I am working on a mobile application in .NET. This is a windows mobile application. I am facing a problem in this application that I wanna upload an image/file to given url/server. Many upload classes is not using like Webclient,WebRequest,WebResponse . I used HttpWebReques , That is not connecting with server. Can anyone help me on how to upload the images on given url in windows mobile 6 in .NET? 回答1: Not sure what you mean exactly with uploading images to a given URL. Surely you need some

Is anybody know any free round button for development in Windows-mobile?

北战南征 提交于 2019-12-11 17:27:30
问题 Is anybody know any free round button for development in Windows-mobile ? thank's in advance 回答1: Here is complete sample code for round buttons: http://j2i.net/BlogEngine/post/2009/08/11/A-Good-Way-to-Render-Round-Buttons.aspx 来源: https://stackoverflow.com/questions/1960662/is-anybody-know-any-free-round-button-for-development-in-windows-mobile

How do I use DMProcessConfigXML to provision my Windows Mobile device?

我的未来我决定 提交于 2019-12-11 17:24:24
问题 I want to create a C# program to provision Windows Mobile devices. I have found MSDN documentation on a function called DMProcessConfigXML, but no instructions on how to use this function. How can I use this function in my Windows Mobile app? I suspect it has something to do with using pinvoke. Thanks, Paul 回答1: From managed code, you can call ConfigurationManager.ProcessConfiguration found in the Microsoft.WindowsMobile.Configuration namespace. msdn Here is sample code: XmlDocument configDoc

Network configuration when debugging windows mobile with active sync?

我的梦境 提交于 2019-12-11 16:10:46
问题 I'm trying to debug a windows mobile app. The app is starting and is debugging all right, but it always seem to use the usb connection to the computer as it's internet connection. I need the mobile device to use it's GPRS connection when debugging. Is it possible and how? 回答1: If you are using Windows Mobile Device Center. Connect without setting up your device Mobile Device Settings Connection Settings Select Allow data connection on device when connected to PC 来源: https://stackoverflow.com

Slow Update/insert into SQL Server CE using LinqToDatasets

拥有回忆 提交于 2019-12-11 16:04:45
问题 I have a mobile app that is using LinqToDatasets to update/insert into a SQL Server CE 3.5 File. My Code looks like this: // All the MyClass Updates MyTableAdapter myTableAdapter = new MyTableAdapter(); foreach (MyClassToInsert myClass in updates.MyClassChanges) { // Update the row if it is already there int result = myTableAdapter.Update(myClass.FirstColumn, myClass.SecondColumn, myClass.FirstColumn); // If the row was not there then insert it. if (result == 0) { myTableAdapter.Insert

Windows Mobile 6.0/6.5 - Push Notification

一世执手 提交于 2019-12-11 14:54:19
问题 My mobile application needs to ping web service (WCF) periodically to get the latest data from server. The problem is, this is done periodically even if there isn't anything new on the server. Is there any way that Server notifies device about the change? Like Push Notification? I have read that Push Notifications can be done by SMS and Email. But, both has disadvantages. 回答1: You can try with long lived HTTP requests... http://msdn.microsoft.com/en-us/library/aa446486.aspx 来源: https:/

Zoom on a PictureBox (Windows Mobile)

泄露秘密 提交于 2019-12-11 14:51:53
问题 I'm developing an app for Windows Mobile. I would like to make zoom on a PictureBox's image. How can I do this? I think this is more complicated because I'm doing for Windows Mobile . Thank you! 回答1: Almost all questions that have to do with Windows Mobile are answered with OpenNetCF. While I haven't tried this, OpenNetCF has a picture box control with a Scale() method. Perhaps this is what you're looking for. If you use the ImageViewer control, you will get Zoom in/out. 来源: https:/

Problems getting a device driver to load at startup - WM6.1

谁说我不能喝 提交于 2019-12-11 12:48:52
问题 Our embedded systems programmer has developed the shell of a virtual serial port driver for our mobile hardware, and I have been filling in the methods to get it to work. The driver does work as expected, it simulates a COM port for a USB device that is spewing out NMEA strings (GPS data). I type WM6 for short, but the OS is WM6.1 if it makes any difference. The problem I am having is that the driver does not load at start up of the device on WM6 only. The driver was developed for both CE5

GetSystemPowerState Output not defined in pm.h

陌路散爱 提交于 2019-12-11 11:56:47
问题 I am trying to get the user idle state of my Windows Mobile device. When I run the function GetSystemPowerState (after 15 min of not touching the device) I get the following value: Dec: 302055424 Hex: 0x12010000 Bin: 10010000000010000000000000000 I was hoping that PowerState & POWER_STATE_USERIDLE == POWER_STATE_USERIDLE would be true. But POWER_STATE_USERIDLE is 0x01000000 and I have 0x02000000. I went to look up 0x02000000 and found that it is not in pm.h. What does 0x02000000 mean? Where