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

Windows CE 6 Wordpad replacement

I'm developing a Win CE 6 OS image and want to make it fit in the "Windows Embedded CE 6.0 Core Run-Time License". This means, among other things, that I have to remove the Wordpad application. From a product service and development perspective I'd…
FkYkko
  • 1,015
  • 1
  • 12
  • 18
0
votes
1 answer

Windows CE simple multithreaded application - thread scheduling

I have created simple application for Windows CE 5.0 as a exercise for some multithreaded work. In WinMain I am calling twice function for creating threads: myThread = CreateThread(NULL, 0, myThreadFunc(), NULL, 0, NULL); myThread2 =…
Grizzly
  • 1
  • 1
  • 3
0
votes
1 answer

How do I determine the file system of a volume in compact framework?

Specifically, I need to determine whether a mounted SDIO card is using FAT or TFAT. Win CE 5, CF 3.5
Nik
  • 2,718
  • 23
  • 34
0
votes
1 answer

Is there a simple way (api?) to toggle USB operation on Windows CE6 using C++

I need to be able to switch on/off the operation of the USB ports on a WinCE6 system within my application based on user input. I've seen ways in normal Windows to do this that use "Setupapi.h", however, this isn't part of WinCE6 so isn't…
Dave
  • 1,696
  • 4
  • 23
  • 47
0
votes
5 answers

How do I set order of moving between Windows controls created at runtime?

We have a series of dialogs in our application for which the dialog template defines 4 buttons along the bottom of the screen. However (depending which version of our hardware the application is running on) we sometimes create 2 additional buttons…
AAT
  • 3,286
  • 1
  • 22
  • 26
0
votes
1 answer

wince UI application Japanese looks Chinese

0R3 GUI application is able to display text in many occidental languages and Japanese too. I'm able to switch languages runtime by redrawing all the texts changing the font by using CreateFontIndirect(). Since my application do not use at all WinCE…
AlexS
  • 1
0
votes
1 answer

Developing apps for Windows CE .NET 4.2 with VS 2010

Is it possible to develop apps for Windows CE .NET 4.2 in Visual Studio 2010 under Windows 7? Because I had several problems trying to use VS2003 and eMbedded Visual C++ 4.0... Thanks
Joaquín L. Robles
  • 6,261
  • 10
  • 66
  • 96
0
votes
1 answer

Process.start starts explorer but while explorer is still running sets its hasexited property to true

I am trying to run explorer.exe using Process.start(ProcessInfo); function and then wait for the process to terminate itself and then perfom some action on the exit of the process. here is the code snippest ProcessStartInfo StartInfo = new…
Innayat
  • 11
  • 3
0
votes
1 answer

40000 records in sdf - Performance

I'm using sqlce 3.5 in Datalogic memor. Importing 40,000 records to a table from other sdf inside this scanner, it takes for 3 minutes. Searching a field in this table, it takes 4 seconds. Is it a normal time? Could we speed up? In this table,…
soclose
  • 2,773
  • 12
  • 51
  • 60
0
votes
1 answer

How to run an EXE application from C++ on windows CE

How can one write a C++ dll function (for windows CE) to call an exe application e.g the exe path is \DOC\EXE\WINCE_EXE Thanks.
saroll
  • 217
  • 2
  • 4
  • 9
0
votes
1 answer

WinCE: 10053 error during connect

I wrote a Bluetooth client program for a wince 4.2 device. The device discovery works fine. However, when I attempt to connect to a PC, the connect function immediately returns with error code 10053. The connection request was being processed by the…
0
votes
2 answers

Marshaling char * in .NetcompactFramework(Windows CE)

I have the following signature from c++ IDTECHREADER_EXPORTS void ReadTwoBlocks(char *pathConfig, char *datablock1, char *datablock2, int timeout, bool &ret ) I was able to Marshal this correctly on the Full .NetFrameWork and it works as…
saroll
  • 217
  • 2
  • 4
  • 9
0
votes
2 answers

What to use in creating a hand held database application

What program/programming language would be ideal for creating an Access like database on a Windows 5 CE hand held scanner? We have tried Visual CE but it is not really something we can work with. Ultimately we would love to build a system where we…
Terry
  • 319
  • 1
  • 3
  • 13
0
votes
1 answer

How to make my form background transparent in my WINCE 6.0 Application

I am trying to develop an WinCE Device Application. I need to set the form transparency or opacity. But not sure how to set that. I tried to overide onPaint and OnPaintBackground using transparent image but couldn't succeed. Any Suggestion welcomes
Verve Innovation
  • 2,006
  • 6
  • 29
  • 48
0
votes
1 answer

API to list files on a Windows Mobile device

I'm writing an Windows Mobile application and I'd like to get a list of files in a certain folder on the device. Is there an API to use to read information about folders and files in the device file system?
Jonas Pegerfalk
  • 9,016
  • 9
  • 29
  • 29