windows-mobile

How do I set Network Management settings or make the dialog appear in C# on Windows Mobile?

坚强是说给别人听的谎言 提交于 2019-12-28 06:49:08
问题 In Windows Mobile, when you open Internet Explorer and type in a URL that your device can't connect to, you are notified of this and prompted to (manually) navigate to the screen where you can actually do something about this as a user (Network Management), like so: alt text http://www.freeimagehosting.net/uploads/d3d95e00d2.gif However, if a .NET Compact Framework application tries to connect to a webservice and the webservice URL is not reachable, the "Cannot Connect" bubble does not appear

What are the most valuable .Net Compact Framework Tips, Tricks, and Gotcha-Avoiders? [closed]

▼魔方 西西 提交于 2019-12-28 03:15:10
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 8 years ago . We work extensively in the .Net Compact Framework and Windows Mobile. I've seen plenty of questions come up regarding specifics to

Integrating pocket outlook and C# application

我们两清 提交于 2019-12-25 10:52:49
问题 I am hoping someone can help me by pointing in the right direction with a problem I have I want to be able to create appointments using Outlook\Exchange server and sync those to my device using pocket outlook. On the device I want to be able to open the appointments application on the device, clicking on a menu option and pass the appointment details to another application (which I am writing also). Any ideas? How easy is this to do and where is the best place to start looking for working how

How to update a sideloaded APPX on Windows 10 Mobile

混江龙づ霸主 提交于 2019-12-25 09:04:08
问题 Problem: I have created two APPX-files with version 0.0.1 and version 0.0.2. After the installation of version 0.0.1 the app is visible and accessible. All is ok so far. Now I want to update that app to version 0.0.2. I open the 0.0.2 APPX-file and the installation pop-up comes up. I press the install button and the app seems to install, same like the 0.0.1 installation. After about a minute I open the app again, but against my expectations version 0.0.1 is still installed. I have also tried

The file name is not valid. Check the file name for the database. [ File name = file:\C:\Users\

一笑奈何 提交于 2019-12-25 07:46:55
问题 I have a windows CE application that uses SQL CE and .Net3.5 in MS VS 2008. when I run my application in mobile emulator every thing is OK and mobile application works fine. But when I run application.exe in Debug folder on my PC I see the error below! i Googled it , but couldn't find any solution. have anybody got a solution for it? This is my LongLongAddress\MyMobileApp\bin\Debug folder : 回答1: Yeah, I have a mistake that want to open a CF app on a PC !!! :) when i create a .cab file and

How do I keep a Windows Mobile Professional Device in the Unattended Power State

拥有回忆 提交于 2019-12-25 04:53:35
问题 I have a .net 3.5 application running on windows mobile professional that uses sql server ce 3.5 and merge replication with sql server 2005 sp2, it not yet a 1.0 product. Every couple of minutes or so it starts a merge replication using a timer control. I suppose down the line I'll have to have some kind of push senario, either using long lived HTTP requests or Window Mobile Email WCF. However in the meantime my problem is that the devices are being "put to sleep" whilst waiting for the

Resize images in Windows Mobile

与世无争的帅哥 提交于 2019-12-25 04:46:21
问题 Is there anyone who knows a way to resize images on the .net 2.0 Compact Framework? I want to be able to get images, taken with the camera on my phone, from the phones memory, resize them and then upload them to a webservice so I acctually don't need to store the resized images on disk. 回答1: This is the C# code I use to resize images in my .NET CF 2.0 applications: public static Image ResizePicture( Image image, Size maxSize ) { if( image == null ) throw new ArgumentNullException( "image",

.net mobile vs windows mobile

落爺英雄遲暮 提交于 2019-12-25 04:42:51
问题 I was looking online for windows mobile questions. I am a bit confused here, please correct me if I am wrong - .net mobile and windows mobile they both means the same right 回答1: there's .NET Compact Framework which operates on Windows Mobile 5.0 through 6.5. then there's Windows Phone 7 which runs a stripped down version of .NET 4.0/Silverlight. 回答2: The first problem here is that there's no such thing as ".NET Mobile", so we're left to guess exactly what we're trying to compare for you.

Wcf proxy generation on windows mobile application

天大地大妈咪最大 提交于 2019-12-25 04:42:18
问题 For my mobile app, I used the Add Web References to generate the client proxy to interact with my WCF service. Then I read somewhere there is an equivalent of SvcUtil for compact framework: NetCFSvcUtil. Should I be using the NetCFSvcUtil instead of going throught the Add Web References? Or the Add Web References uses NetCFSvcUtil in the background? Any pros/cons of one or the other? 回答1: Add web reference should be old proxy based on ASMX web services whereas NetCFSvcUtil is tool to generate

Using Ruby on Windows Mobile Devices

大憨熊 提交于 2019-12-25 04:38:07
问题 As far as I know, JRuby runs only on full JVM. I found this version of JRuby which runs on Java Micro Edition devices, however it's marked as EXPERIMENTAL AND RESEARCH ONLY Are there any other options for running Ruby application on Windows Mobile devices? 回答1: I'm not sure what you are asking. Your title and your question refer to Ruby, but your description talks about JRuby. Which are you asking about? I know regular Ruby can run on Windows Mobile (see Rhodes, for example, or RubyOnMobile).