Questions tagged [windows-ce]

Microsoft Windows CE (now officially known as Windows Embedded Compact and previously also known as Windows Embedded CE, and sometimes abbreviated WinCE) is an operating system developed by Microsoft for embedded systems.

Windows CE is a distinct operating system and kernel, rather than a trimmed-down version of desktop Windows. It is not to be confused with Windows Embedded Standard which is an NT-based componentized version of desktop Microsoft Windows.

Microsoft licenses Windows CE to OEMs and device makers. The OEMs and device makers can modify and create their own user interfaces and experiences, with Windows CE providing the technical foundation to do so.

The current version of Windows Embedded Compact supports Intel x86 and compatibles, MIPS, and ARM processors.

Source: Wikipedia (Windows CE)

2701 questions
0
votes
1 answer

WebService on embedded device that can be accessed by iOS

I have an embedded device that runs WinCE with wireless capabilites. I'm looking for advice on technologies I can successfully use that will allow me to easily create a web service on the WinCE device and be able to serve content to my iOS device.…
Adam Johnson
  • 2,198
  • 1
  • 17
  • 23
0
votes
1 answer

How to catch device reset events on Windows Mobile?

There are a few ways to reset device programatically: SetSystemPowerState ExitWindowsEx But how to catch device event and log some info for debug purpose (like calling process, etc)? Solution here.
0
votes
1 answer

How to identify a UI window in order to trace it back to source code?

I've got screenshots of dialogs that require modifications. However, I've so many of them it is difficult to pin point in code the window in question. What can I do to "reverse engineer" the window (E.g.: A dialog with a dialog ID) back to source…
0
votes
1 answer

Optimization techniques for reducing Windows Mobile 6.x OS build time

As far as I understand, the OS image build time (initial and incremental) from Windows CE to Windows Mobile has increased significantly. What are some possible things I can do to reduce the compile time for Windows Mobile OS build?
0
votes
2 answers

Possible ways to compress files on windows mobile using C++/C#

I am looking for a list of possible ways to compress files on Windows Mobile platform using C++/C#. I'd like to see all possible ways this can be achieved, including links to sample projects if at all possible. I'd like to see all possibilities, no…
0
votes
2 answers

Windows embedded CE 6.0 and Odbc

I am writing an application to run on a windows embedded ce 6.0. the application needs to have access to a sql database and insert records into it. My boss said i have to use Odbc commands, but so far i haven't seen proof that windows embedded ce…
Chucri
  • 17
  • 3
  • 12
0
votes
2 answers

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…
eesh
  • 1,384
  • 2
  • 13
  • 25
0
votes
2 answers

Windows CE 6 remote debugging. No call stack when pause program

I am using Visual Studio 2008 for a remote debugging session with WindowsCE 6.0. When I click 'Pause' I cannot see the program call stack. Instead of a call stack with any functions of my program I just see a single address. I am using the debug…
Matthias
  • 1,386
  • 3
  • 24
  • 59
0
votes
2 answers

How to detect Network type on Win Mobile

I spend lot of time searching how to determine the current network type such as WIFI, 3G, Ethernet. But I cannot find any information online in windows platform. I want to detect the Ethernet network type, but I cannot find any API that can…
user588477
  • 165
  • 11
0
votes
1 answer

Export struct defined in winbase.h with ATL's IDL

This is my method defined in IDL: [id(3), helpstring("method GetBatteryStatus")] HRESULT GetBatteryStatus([out,retval] SYSTEM_POWER_STATUS_EX2* batteryStatus); The SYSTEM_POWER_STATUS_EX2 is a struct defined in winbase.h, and this project is a…
0
votes
1 answer

Creating a serial PPP connection between a Windows CE 6 device and Windows 7

I need to create a PPP connection over a serial port between an embedded device running Windows CE 6 and a PC running Windows 7. I've configured a dial-up modem on Windows 7 according to this: https://stackoverflow.com/a/7085259/512910 I used a…
Wasyl
  • 16
  • 1
  • 4
0
votes
0 answers

Alternate of WM_ACTIVATEAPP message in WINCE

While capturing the WM_ACTIVATE message, I am getting the LPARAM parameter of the message handler as NULL if the windows are in the different threads. So after some reading and searching I found that for this kind of situation one should use…
Manish
  • 513
  • 1
  • 8
  • 23
0
votes
1 answer

How to connect to GPRS programmatically in C# Win CE 5

I am trying to automatically start the GPRS connection after device boot complete. How can I do this in Win CE 5 using C#?
kakopappa
  • 5,023
  • 5
  • 54
  • 73
0
votes
1 answer

Switching between WiFi and GPRS on Windows Mobile 5.0 and Windows CE

We are trying to switch between WiFi and GPRS depending upon the availability of the network. We are also using OpenNETCF for the network activity. Is there any callback methods available in the OpenNETCF or .NET Framework to get a notification…
0
votes
3 answers

Porting Windows demo apps to WinCE/XP Embedded

We have a range of PC demonstration programs for our microcontroller products. The programs typically connect to a USB HID chip on the microcontroller board. The USB chip acts as a communications bridge, allowing the programs to communicate with…