windows-mobile

what is the difference between Windows CE and Windows Mobile?

I am just starting off Windows OEM development and have come across these two terms Windows CE and Windows Mobile. What is the difference between the two? ...

Is it possible to run java programs on Windows CE ?

hi Is it possible to run java programs on Windows CE ? thank's ...

How to identify that a Windows Mobile 2005 device has connected to the cradle ?

Hi How to identify that Terminal (Windows Mobile 2005 ) connect to cradle ? I need to identical in the Terminal thank's in advance ...

Is there a way to run Windows CE 6.0 emulator at a 1024 * 600 resolution?

We are creating an embedded application for Windows CE 6.0 for which we do not have the hardware yet. We would like to be able to run in emulation mode at a resolution of 1024 * 600 to develop as that is the screen resolution of the hardware we will be using. It appears that the highest resolution that the Windows CE 6.0 emulator suppo...

Using Symbol MC70 series scanner with native code

Is it possible to use Symbol MC70 series scanner with native code? I have a Windows Mobile application written using Lazarus(Object pascal) and I want to use it with Symbol MC70. The sdk that they have are for C, .NET and Java. I had a look at the C sdk and it comes with .LIB files which I cannot use with Object Pascal. I have no clue a...

Developing a winforms application for both a tablet PC and WindowMobile

I'm developing an application for a Windows based tablet PC. This application is pretty much a port of an application I already developed on a Windows Mobile device using .NET CF. I want to write the application from scratch, taking advantage of all of the knowledge I've gained in software development. I'd also like to write this new ...

Accessing Cookies From Webbrowser Control

Hi There, I have a Windows mobile 6 application that contains a Webbrowser control to navigate some intranet sites. Is it possible to somehow access the know cookies that are being set by pages as they are displayed in browser control? Since the compact frame work haw no ObjectScripting method I cant figure any work around that could d...

Datagrid CurrentRowIndex returns -1??

This seems quite odd. I have a Datagrid (.net 3.5 cf) that I bind to either a List or Inventory[]. When I click on a row and then hit a button to perform an action when I bind to a List CurrentRowIndex is -1. When I bind to Inventory[] and perform the same action CurrentRowIndex comes back with the selected row why is that?? grdBat...

windows mobile releasing resources when application is closed (.net 3.5 cf)

I have a basic .net 3.5 cf application with 4+ forms. I am using a window handler class that I created to make sure that certain forms only have one instance open at a time where as other (Product Details for example) can be opened as many times as the user wants. My problem lies in the fact that when the user closes all the forms (By ...

BugTrap and RapiDbg on Windows Mobile 6.0

I'm trying to port a driver and a few applications from a PDA running PocketPC 2003 (Windows CE 4.21) to one running Windows Mobile 6 (CE 5.2). Does anybody know if/how I can log the OutputDebugString calls made by the driver, short of using the Platform Builder or any custom OS image? Porting is 99% complete, but I need to troublesho...

Cluster size in .NET Compact Framework

I'm trying to programatically determine the cluster size of a storage card, using C# / .NET Compact Framework, on Widows Mobile. For desktop Windows there's the GetDiskFreeSpace() function, but it doesn't exist in coredll.dll/Windows Mobile. Is there any other way I could find out the size of the cluster for a storage card? ...

What would cause a parent window to not know that it had a child dialog?

In my native windows mobile app I've got a window that creates a dialog. Lets say my window handle is hMainWnd. I create the dialog using DialogBoxParam() and passing in hMainWnd as the dialog's parent: DialogBoxParam(_,_,hMainWnd,_,_); Let's say the dialog's handle is hDlgWnd. From within the dialog, GetParent() returns hMainWnd ...

Closing a Windows Mobile Console Application

What is the best and cleanest way to close a console application on windows mobile? The application by default is invisible and you cannot see it in the running programs, which is great for running a background process, but sometimes the user might need to close it.. ...

.net OutOfMemory exception

While making some final tests of a class-library that I'm writing for Windows Mobile (using Compact Net Framework 2.0), I ran into an OOM-exception. Basically, my library loads first a dictionary-file (an ordinary text file with a word list) and thereafter another file based upon the dictionary (I call it KeyMap) which size is more or ...

Upload images in windows mobile 6 in .net

Hello, I am working on a mobile application on .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 HttpWebRequest, That is not connecting with server. Pls anyone h...

Upload image on server from mobile application

Hello, I am working on a mobile application on .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 HttpWebRequest, That is not connecting with server. Please anyone can ...

How do i know if a thread is suspended under Windows CE

Can I get a threads suspend count under Windows CE, using C or Visual C++, without calling resume or suspend functions? The only way I can see of doing it is something like int Count = SuspendThread(ThreadHandle); ResumeThread(ThreadHandle); This has a couple of problems, firstly, I'd rather not suspend the thread, and secondly the...

Programmatically setup a PEAP connection in Windows Mobile

I have been working on this for a few days and this is doing my head in: Our application is built using the .NET Compact Framework 2.0 and running on Windows Mobile 5 & 6 devices. We can set the WLAN connection of the device programmatically using the Wireless Zero Config functions (described here: msdn.microsoft.com/en-us/library/ms89...

How to Add options to <SELECT>, in IE Windows Mobile 5

Trying to programmatically add options to a SELECT drop down in IE Windows Mobile. Because this is IE Windows Mobile 5, most solutions involving getElementID do not function, so I have had to resort to more plain vanilla HTML /Java script, the example below works fine in IE 6 and FF , but fails with "Object doesn't support this property...

The remote name could not be resolved

Hello, i m creating mobile application for windows mobile 6.i m uploading an image on url/website. for this i m using webrequest and webresponse class.at the time of getting response i m getting this type of error- The remote name could not be resolved.. my code is- String url = "http://weblogs.asp.net/scottgu/rss.aspx"; Sys...