windows-mobile-6.1

How to use WM2003 binary (dll) on Windows Mobile 6.1 (WM6.1) device ? (PE-loader can't accept old binaries)

Hi! I have an old plugin (as binary, dll), used by my application. It was build for WM2003. And now it crashes the app, if loaded on Windows Mobile 6.1 (WM5 works fine, WM6 too). The source code is not available and it's no more supported by developer. So I can't rebuild it for WM6.1. Is it possible to patch or convert the binary to a...

Question - Setting dynamic HTML using Javascript to iFrames on Windows Mobile 6.1 - IE Mobile6

Hi Experts, (excuse me if this is not the right forum to post - i couldn't find anything related to non-native programming and related to this topic) I Am trying to set a dynamic HTML into an iFrame on the webpage. I have tried a couple of things but none of them seem to work. I m able to read the innerHTML but can't seem to update it. ...

windows mobile - connection link failed

Windows mobile 6.1 device, attempting to connect via a mobile network and we sometime see the message "Connection Link failed". Can anyone verify what this actually means, I'm beginning to think it relates to signal from the mobile carrier but does anyone have any other ideas? ...

IEMobile 7.11 with external Javascript?

I'm trying to work with a windows mobile 6.1 device running IEMobile 7.11 and I'm trying to load external javascript as such: <html> <head> <script type="text/javascript" src="js/alert.js"></script> </head> <body><?php echo('<pre>'); print_r($_SERVER); echo('</pre>'); ?></body> </html> alert.js looks like this: alert('this is include...

Check & Connect to 3G Under Compact Framework

Hello, I'm developing a compact-framework application for a Windows Mobile device to work with SQLServer Server trough 3G. The problem is that the device disconnects automatically from 3G after some idle time, and i have reconnect manually, this is not bad at all, the customer doesn't need permanent 3G connection, and it extends the bat...

windows mobile 6.1 MMS client - functional spec

Hey, Any one knows where i can get the MMS specs for windows mobile 6.1? Or maybe even which standard does it follow... Thanks in advance :P ...

How do I kill a Windows Mobile 6.1 forms app process when the form is closed?

In the Program.cs file of the .Net CF 3.5 WinForms program I've written, I launch the app by instantiating a new instance of Form1. Application.Run(new Form1()); When I want to close/exit the application, I override the Form1 FormClosed event so that I can ensure exiting the application. // In Form1 code-behind private void OnFormClo...

How to create a Minimize button in WinCE dialog based application

Hi, I created a WinCE dialog based application. I want to add minimize option at the top right corner. If i create an MFC dialog based application, a checkbox will be present for Minimize button asking whether minimize is required for the dialog being created. But if i create MFC Application for SmartDevice, minimize checkbox will not ...

How do you change the .Net CF 3.5 DataGrid scrollbar colors?

I'm writing a .Net Compact Framework 3.5 app that uses the DataGrid control. I'm trying to figure out how to set the vertical and horizontal scrollbar colors (background and foreground). Solutions? Thanks. ...