windows-mobile

how to get the browser controle from opennetCF

HI.. i want to get the browser control from opennetCF..can any one please suggest me were i have to download the OpennetCF SDK.. and how to use it to get the browser control from it,, i m new to opennetCF.. please let me know ...

Distributing my Windows Mobile app outside of marketplace?

Hello all friendly Windows Mobile Developers! I have a simple question: Can I distribute my Windows Mobile App outside of the Marketplace? If so, how is this done? Can I from my phone send an app, I have developed my self, to another person in the same room? I am aiming for Windows Mobile version 6.5, though if any one has some inpu...

Is there a way to create an image from a given control in the .NET Compact Framework?

I basically want to be able to say "Hey, control give me your bitmap image." using something like Control.RenderToBitmap or using some code. The control in question is a panel with various other controls on top of it. ...

width=device-width not working in Mobile IE

Hi, I'm trying to make a website that works well on mobile phones. So far every phone that I have tested works well, but phones with Windows Mobile IE. It seem that Mobile IE just reads over the <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"/> and is not setting the width to device...

Can I control position of SIP ( Software Input Panel ) in .NET Compact Framework?

Hi, I want to display the SIP, but I want to display it a little higher on the screen than where it shows by default. Is there a way to position the SIP vertically? ...

Windows Mobile Standard: Scrolling and About dialog

My application's About dialog consists of a couple labels, an image and a LinkLabel control (link to my website). My problem is the LinkLable, which is at the bottom of the form, receives focus, so the form scrolls down to it. Since the other controls on the form don't receieve focus, I can't scroll the form. As a workaround, I tried us...

How to video capture a windows mobile phone?

Hi I want to make a tutorial and I am wondering if there is a way to do the tutorial as a video. I was thinking of using like the emulator and capturing it from there but is there better ways since I have to connect to a webservice and the emulator usually is so much slower then it being on the real device. I don't want to give people t...

WMDC not starting?

Hi all, I am trying to start windows mobile device center on windows 7 machine. But it only shows me the small green window that is shown at loading time and then it is closed automatically. I am not getting what the problem is. I tried to uninstall the previous update then re-installed again but the problem is not gone. Guys please h...

Under Windows CE, how can I check which RAM based DLLs are loaded in virtual memory space?

I have a problem with loading a DLL under Windows Mobile 5.0. I'm pretty confident that this is caused by running out of the application virtual memory (the 32 MB slot of the process, as explained in Windows CE .NET Advanced Memory Management). I'm looking for a way to actually make sure that this is the issue and investigate whether m...

How to split synchronization process in sync framework

I'm using sync framework to synchronize sql server 2008 database with sqlCE on mobile device. Everything looks fine besides some problems. One of them is: If i want to sync 1000 or more rows, i get OutOfMemory Exception on mobile device(tho the sync completes well, because after it i check the data of some rows and it looks synced). I th...

Is it possible to sync not whole table data in MS Sync Framework?

I have mobile application, so i dont want to send/receive whole changes in tables..Just some data, that meets some filter terms. Is it possible to achieve with SF; if it is, please provide some resources to read about it, because i found almost nothing. Thank You. ...

OpenGL ES 2.0 SDK for Windows Mobile

I would like to get started developing native (C/C++) OpenGL ES 2.0 applications for Windows Mobile (version 5 or later, any version would do, really). I do however have trouble finding appropriate headers and libraries. What I am looking for is a OpenGL ES 2.0 SDK for Windows Mobile, or an SDK which contains the appropriate headers and...

C# Bitblit from Bitmap to control (Compact Framework)

Hi everybody! I used once BitBlt to save a screenshot to an image file (.Net Compact Framework V3.5, Windows Mobile 2003 and later). Worked fine. Now I want to draw a bitmap to a form. I could use this.CreateGraphics().DrawImage(mybitmap, 0, 0), but I was wondering if it would work with BitBlt like before and just swap the params. So I ...

Web Applications v/s SmartPhone Applications (Iphone, Windows Mobile, Android/Nexus Application)

Q: How does Web Applications differ from SmartPhone Applications (Iphone, Windows Mobile, Android/Nexus Application) and in what specific aspects do they differ and in what degree ? Also for example, Q: Why we need mobile version of Web Application like gmail.com or bankofamerica.com specifically for smartphone devices where we can a...

How to read GPS signal strength in Windows Mobile?

How can I read the GPS signal strength from my Compact .NET app in Windows Mobile 5 and/or 6? I've only seen accessors for GPRS and Wi-Fi signal strength in the API. ...

Avoid memory fragmentation when allocating lots of arrays in Java

I am developing an application in Java that runs on Windows Mobile devices. In order to achieve this we have been using the Esmertec JBed JVM, which is not perfect but we are stuck with it for now. Recently we have been getting complaints from customers about OutOfMemoryErrors. After a lot of playing around with things I discovered th...

How to load an assembly into different AppDomain on Windows Mobile (.NET CF) ?

How to load an assembly into different AppDomain on Windows Mobile (.NET CF) for subsequent AppDomain unload ? ...

Is there a list of mobile browsers which I must support and test for?

Is there a list of mobile browsers which I must support and test for? There are so many mobile devices and browser, it may not be possible to test for all and support all. Yahoo made a list for Desktop browsers http://developer.yahoo.com/yui/articles/gbs/ Does anyone knows any suggested browsers list like this for Mobile browsers. ...

Receiving Invalid Data from Serial Port using SerialPort.ReadExisting()

I have written a program in .NET that listens to a particular Serial Port and processes the data that is being received. I wrote a test program using serialport control and my program was working fine. When i run our program in Windows Mobile with the original device, the data received was garbled. The same device when connected with PC...

[WM 6.5 / C#] Send SMS AND copy them into the "sent messages" folder

Hello, I'm developing an application for windows mobile 6.5. Im writing the code in c#.net and want to send sms due to my app. I checked out the POOM and sms sending worked fine. Code: SmsMessage msg = new SmsMessage(); msg.To.Add(receiver); msg.Body = messageText; msg.Send(); But there's one problem. I want ...