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
7
votes
2 answers

How to read Serial number from mobile device using C#?

How I can read Serial number from a Windows mobile and WinCE mobile device using C#?
Gold
  • 60,526
  • 100
  • 215
  • 315
6
votes
2 answers

HOWTO: Call Managed C# Interface From Unmanaged C++ On WindowsCE Compact Framework

I have extensive unmanaged Windows CE 5 C++ code that provides a UI that I want to use in a new product by combining it with a large amount of newer business and communications logic written in managed C# on Windows CE 6 and the Compact…
James Barnard
  • 266
  • 2
  • 5
6
votes
5 answers

One timer, many method calls or many timers, one method call?

I'm developing an application for WinCE 5.0 on .NET CF 2.0. I was wondering what other people see as the best solution in the following two cases: Assume that i have 10 methods that i need to run every 50mS. Solution 1: Create one…
user653258
  • 63
  • 1
  • 3
6
votes
2 answers

How to read and write value from registry in Windows CE?

How do you insert the value 1 into the property CDInsert in HKEY_LOCAL_MACHINE\SOFTWARE\WJST\WLAN and read it back?
Gali
  • 14,511
  • 28
  • 80
  • 105
6
votes
1 answer

How to get older CE 6.0 updates

I'm working on a project with CE 6.0 and I need to rebuild the tree. My problem is that I have to update the tree up to May 2009, this requires the 2008 rollup and the following 5 monthly updates, but I can't find them (there's the 2009 rollup and…
lornova
  • 6,667
  • 9
  • 47
  • 74
6
votes
2 answers

What is the development experience for Windows Embedded Handheld?

With the release of Windows Phone 7 almost upon us, I was wondering if anyone had details of the other successor to Windows Mobile - Windows Embedded Handheld? The roadmap had release in the 2nd half of 2010 but I have yet to see or hear anything…
Matt Lacey
  • 65,560
  • 11
  • 91
  • 143
6
votes
2 answers

how to make program that be in the taskbar windows-CE

how to make C# program that will be All time in the taskbar ? i want to Build a Keyboard program. i need that when i open the device the program will open and be in the taskbar. another question is, when i have an external program that has a…
Gold
  • 60,526
  • 100
  • 215
  • 315
6
votes
9 answers

Dynamic Memory Allocation Failure Recovery

I'm working on an embedded processor (400 MHz Intel PXA255 XScale), and I thought I saw one case where there wasn't enough memory to satisfy a 'new' operation. The program didn't crash, so I assumed other threads had freed their memory and it was…
Nate Parsons
  • 14,431
  • 13
  • 51
  • 67
6
votes
2 answers

How to get the form active control?

Is there a way to get the form active control? I was checking in the help for the "Support.GetActiveControl" method but it isn't supported :) for the Compact Framework. I suppose that I can track the focus by adding a custom GotFocus event handler…
PabloG
  • 25,761
  • 10
  • 46
  • 59
6
votes
3 answers

.NET compact framework backward compatibility 3.5 and 2.0

Do I need to install .NET 2.0 on the device, where .NET 3.5 is installed? So far my application works on .NET 2.0 (which potentially should be faster) but the long term plan is to port it to .NET 3.5. I need to order devices and the OEM needs to…
kmalmur
  • 2,809
  • 3
  • 29
  • 37
6
votes
4 answers

Code profiling / performance analysis tools for Windows CE/Mobile

What tools do you know, other than those in Visual Studio, to analyze performance bottlenecks in a Windows CE/Mobile application? I'm looking for something like AQTime for CE/Mobile, to profile C/C++ applications compiled to native code.
Fabio Ceconello
  • 15,819
  • 5
  • 38
  • 51
6
votes
2 answers

Must I add explicit threading to my Web API REST methods?

I have created some Web API REST methods that will be called by handheld/Windows CE clients. So the server may be hit by multiple (well, will be is more like it, the question being how many) requests simultaneously. Do the REST methods automatically…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
6
votes
1 answer

Serial I/O Overlapped/Non-Overlapped with Windows/Windows CE

I'm sorry this isn't much of a question, but more of to help people having problems with these particular things. The problem I'm working on requires the use of Serial I/O, but is primarily running under Windows CE 6.0. However, I was recently…
The Welder
  • 916
  • 6
  • 24
6
votes
3 answers

How to force winCE to see SD/MMC card after startup

I am working on the software for a new instrument that interacts with some scientific equipment. The user interface is via Windows CE pocket PC (Windows CE 600 V3.01 Build 195). The instrument is setup with one end of a flex cable always plugged…
lynnj
  • 115
  • 1
  • 7
6
votes
3 answers

Getting current directory in Windows CE 5.0 using C# compact 2.0

How do I get the current directory from which my EXE is running? I have tried the following two codes but they don't work. Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase); Using above I get error "The name "Assembly" does…
Ali
  • 1,801
  • 6
  • 43
  • 58