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.

learn more… | top users | synonyms (2)

2
votes
1answer
130 views

Force close Windows CE 5 app using C#

How do I go about force-closing an application on Windows CE 5.0, using C#? I've already tried Application.Exit() but this doesn't always kill all currently running threads. I'd normally use ...
0
votes
1answer
38 views

Board Support Package

Currently our BSP is built using Visual Studio 2005. I would like to update this to use VS 2010 at the very least, preferably 2012. I have not been able to find anything that will allow me to do ...
0
votes
1answer
73 views

Windows CE 6.0 and runtime link to Debug DLL /MDd

I'm using Windows CE 6.0 R3 on an x86 PC. I've build the NK.bin and the SDK for the platform. But I've some problem to understand how can I build a console application with /MTd (Debug DLL). If I ...
0
votes
0answers
44 views

How to disable some hardware keys?

I'm developping an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS. I want to disable the hardware F buttons (F1, F2, F...) when my ...
0
votes
0answers
19 views

conditional compilation on wince

I have two projects that have a lot of code in common. The common code is in different directories. For Example: I have project A and project B and the common code is in folders C and D. In wince ...
0
votes
1answer
25 views

Intel TBB on Win CE for developing mobile applications?

i want to know whether we can use INTEL TBB for developing mobile applications on Window CE. i was searching for the material but unable to found any .Basically two things i want to know whether ...
1
vote
0answers
39 views

Windows CE Form Size Properties Not Updating After Maximize

I am developing a full screen Windows CE application in C#. Once I set the WindowState to Maximized the Height and Width properties of the form remain unchanged as does the ClientRectangle and ...
0
votes
1answer
62 views

What could be causing an NRE when closing a form?

Under certain circumstances, I get an NRE when closing a form using its Close button, which simply calls the native (WinForms) Close() method. Certain paths through the code do fine, but one ...
0
votes
1answer
28 views

Is disposing a SqlCeDataReader a good idea?

In trying to track down the cause of a Null Reference Exception which occurs only in certain situations, I came across this code: SqlCeDataReader IdValsReader = IdValsCMD.ExecuteReader(); if ...
2
votes
2answers
159 views

Build Boost C++ WinCE

I know that are similar question but doesn't help me. I want to build boost for Windows CE 6 on an x86 Platform. I've build STLPort in release moded as shared library for WINCE with success, I've ...
1
vote
1answer
77 views

Calling C# Dll from unmanaged C++ application on WindowsCE [duplicate]

I have an off the shelf product which supports C++ plugins. Im wondering if its possible to call a C# Dll from an unmanaged C++ dll so that i can do the grunt work in C# which im familure with and ...
0
votes
1answer
58 views

Install WinCe 6.0 os on vortex86 based device

I need to install WinCe 6.0 on Vortex86 device and then write application to it. I used Platform Builder and built OS based on Vortex86 BSP. How can I install it on my Vortex based device? (It has ...
0
votes
0answers
17 views

How the wince6 bsp setting the usb client function driver ufnprn model generated as a dll?

Coulde anyone tell me how the wince6 bsp setting the usb client function driver ufnprn model generated as a dll which I see from the project is static library. I need add a usb client function driver ...
1
vote
1answer
48 views

Porting multithreaded window ce app to win32

I am trying to do the opposite of the usual. We have a legacy WinCE app which now needs to be ported to the Win32 platform, so that it can work as a simulator of the actual app. I have managed to ...
0
votes
1answer
110 views

How to find process ID in WinCe?

I am using an Win Ce 5.0 that was "sliced" by the Manufacturer because of Memory Problems. It starts an application ( an BIN image is made using Platform Builder ) that consumes some memory. When I ...
-1
votes
2answers
127 views

windows embedded CE device to linux [closed]

I have a Windows embedded CE 6.0 device (with touchscreen and OTG, SDHC, RS232, USB, network Port). His processor type is: Freescale, ARM1136_Mx31. Does anyone if it is possible to install linux in ...
3
votes
2answers
89 views

How can I see the SQL sent to the database after the parameters have replaced their placeholders?

The first MessageBox.Show() below simply shows me the exact same thing as const string SQL_GET_VENDOR_ITEMS, which seems fine to me, but I'm getting, "There was an error parsing the query. [Token line ...
1
vote
2answers
116 views

Why would this query generate a file sharing violation?

The following code gives me the error (I get it from the MessageBox.Show() in the catch block) "Exception in PopulateBla() : There is a file sharing violation. A different process might be using ...
1
vote
1answer
113 views

How Can I disable the virtual keyboard?

I'm developping an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS. I employed in my app. an "openFileDialog" compenent, but the the ...
1
vote
2answers
150 views

How to convert an excel file to .csv file?

I'm developping an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS. I want to create a little application responsible of the ...
1
vote
4answers
279 views

Is it possible to use Delphi XE2 to develop Windows CE Applications?

I have to develop an application to run on Windows CE accessing a remote Firebird database. I would like to use Delphi to do so. Is it possible?
0
votes
0answers
103 views

MC 9090 Barcode scanner on Win CE 5.0

I'm developing an application in C# with EMDK 2.5 for scanning bar codes and processing it. The component used for scanning / Processing the barcode is Barcode2. The application has two Edit controls ...
1
vote
3answers
77 views

Is relying on an exception for a failed attempt an acceptable way to return a bool?

This query: string.Format("SELECT COUNT(*) FROM {0}", tableName); ...which I'm using as the guts of an "isValidTable(string tableName)" method, throws an exception if the tableName does not exist ...
0
votes
2answers
222 views

How to load data from Excel file to sql databse?

I'm developping an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS. I want to import data from excel file to the local database of ...
0
votes
2answers
83 views

Should I refactor this, or is my confusion cause to be cautious? [closed]

This SqlCe code looks awfully strange to me: cmd.CommandText = "INSERT INTO departments ( account_id, name) VALUES (?, ?)"; foreach(DataTable tab in dset.Tables) { if (tab.TableName == ...
0
votes
1answer
203 views

How to send XML file from smart device to PC in C#?

I'm developing a web application for a handheld RFID reader (windows CE), and I'm trying to send an XML file from the RFID reader to a laptop throgh wireless network or GPRS. The code works properly ...
2
votes
1answer
115 views

Assembly language for Windows CE

How can I write a program in assembly language for Windows CE (x86)? Now I'm using VS2008 winth Windows CE 5.0 SDK, and my C++ programs runs fine. I tried to create an asm file with my code and to ...
1
vote
1answer
55 views

QML examples doesn’t run on Windows CE

I built the Qt 4.8.4 examples targeting Windows CE ARM4I platform, everything works well except those examples including QML. They just don’t run without error message and I couldn’t figure out what ...
0
votes
1answer
54 views

SQL Server CE's DDL parser is very picky but secretive about what it is finding fault with

I keep getting "there was an error parsing the query" no matter what I try with my DDL. So I need an expert in the SQL-Server-CE flavor of SQL to tell me which of the following is the preferred ...
0
votes
1answer
48 views

Why is there an err parsing this DDL, and why can't the engine be more specific about locating it?

With this DDL ("BLA" is a tablename in the form "CCR130329093342") ALTER TABLE BLA ADD salvation float NOT NULL WITH DEFAULT ...I'm getting, "There was an error parsing the query. [Token line ...
-1
votes
2answers
116 views

Why am I getting, “A column ID occurred more than once in the specification”?

I've got code that creates a table if it doesn't exist and adds all necessary columns, but for cases where the user has an older version of the table, it adds some new columns. Yet when that second ...
1
vote
2answers
87 views

How to retrieve a string in a C# Key(*)Event that was inserted by scan? (Windows CE 5)

I am working on a Win CE 5 application that captures data scanned via barcode scanner. The application should support some "system-barcodes", predefinded barcodes that trigger functions of the ...
0
votes
1answer
40 views

How can I run webkit commandline JSC on winCE 6

Setup Webkit Build: https://github.com/masali-hp/webkit Hardware: WinCE 6 (ARM) Issue I am trying to test/debug javascriptcore separate to Webkit. When I try to launch the interactive JSC exe I ...
-1
votes
1answer
303 views

How can I determine whether a column exists in a SQL Server CE table with C#?

The legacy code does it this way: public bool isValidField(string tableName, string fieldName) { bool retVal; string tblQuery = string.Format("SELECT {0} FROM {1}", fieldName, tableName); ...
0
votes
0answers
45 views

How to autostart my application?

I'm developping an application for Honeywell Dolphin 6100 ; a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS. I want to autoRun my application when the device reboot. Can ...
1
vote
2answers
77 views

Is this the optimal way to guard against failed DB commits?

I have a legacy method that keeps throwing an exception. It has a nested try|catch. Is this the best way to code that sort of thing: public void DBCommand(string dynSQL, bool Silent) { ...
1
vote
2answers
89 views

Why would my text file suddenly stop being saved?

Mildly chastised here by wiser heads, I switched my calls to MessageBox.Show() to writing lines to a StringBuilder which is later saved to a file, both from the app's custom exception handler: public ...
3
votes
1answer
160 views

Why does disposing a SqlCeConnection both solve one exception and raise a different one?

When calling the same query method twice in a session of the app, I get "DBCommandExcept" As an experiment, I decided to dispose of the connection object at the end of the method, to see if that was ...
1
vote
0answers
44 views

Webkit crashing on WinCE

I am working on a port of Webkit for WinCE 6 (ARM) and am running into Javascript issues. Code base: https://github.com/masali-hp/webkit Javascript Engine: JavascriptCore I am using Masali's code ...
3
votes
1answer
118 views

Using SQL Server CE 3.5 on Azure Cloud Service Hosting using web role

We have hosted a asp.net 4.0 application on Azure Cloud Hosting service using web role. We are using SQL Server CE 3.5 dll and inserting some data to .sdf file. Getting the following error message ...
1
vote
1answer
60 views

Shockwave object For Windows Ce

I can use Shockwave Flash object in C# windows application How can I use Shockwave object in Windows embebde Ce 6.0 CF 2.0 or Is there another way for animation in Windows ce.
0
votes
2answers
99 views

How can I determine whether a dataset has any tables in it without getting the “cannot find table 0” err msg?

I've got code like this: DataSet QtyDS = null; . . . QtyDS = GetAllUPCDSDRecords(txtUPC.Text); ...that is blowing up with "cannot find table 0" To try to prevent that, I've tried the following, ...
0
votes
1answer
57 views

How could the existence of pseudo debug strings cause a difference in functionality?

If I have these sprinkled throughout my code: MessageBox.Show("See a format exception yet? #1");//todo: remove (there are 7 of these, numbered from 1..7, most of which display (1,2,5,6,7)) I end ...
1
vote
1answer
62 views

How can can I port MmMapIoSpace from Windows CE 5.0 to 6.0 or XP Embedded?

We currently have a custom board with a microcontroller on it that speaks to a PC/104 windows CE 5.0 board through a dual port ram. Currently we use MmMapIoSpace to map the dual port ram in windows CE ...
0
votes
1answer
56 views

how to deploy .net project to PDA casio device

My project is in visual studio 2005 and i have PDA Casio device.I would like to deploy my dotnet project on my device(PDA CASIO). I have installed required window embedded CE 6.0. As i am new in ...
-1
votes
2answers
54 views

Remove App from Win CE 5.0 device [closed]

I have a WinCE device with proprietary software installed. The unit seems locked down to this software as the clean boot sequence does not remove it. I want it back to Factory defaults. There are 2 ...
0
votes
2answers
158 views

How to make application display in full screen mode, covering the Start menu?

I'm developing an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS. The problem is that I can not put the application into full screen ...
3
votes
1answer
52 views

Are Windows CE controls designed without Automation support?

I am working on the automation of WinCE applications and found following details so far. WPF controls support UI automation through AutomationPeer class. WinForm controls support UI automation ...
0
votes
1answer
69 views

Where can I found the honeywell librairies to interract with the device?

I have to create an application for Honeywell Dolphin 6100 ; a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS. But I can not the find the relative librairies to make the ...
1
vote
2answers
57 views

Win CE and ASP: How to read/write a file?

I haven't found any answer on the web, maybe one of you knows the answer: With Win CE and MS ASP, how can I read a file or do any IO-Operations? I have this example code which doesn't work at all ...

1 2 3 4 5 32