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.
3
votes
1answer
53 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 ...
0
votes
1answer
72 views
Unresolved external symbol on wince
I received this errors when trying to compile wince code:
Error 3 error LNK2019: unresolved external symbol "public: __thiscall CTransInPlaceFilter::CTransInPlaceFilter(wchar_t *,struct IUnknown ...
0
votes
1answer
43 views
How can I tell if my SqlCeDataReader contains any vals after calling SqlCeCommand.ExecuteReader()?
With the code below:
SqlCeDataReader myReader = cmd.ExecuteReader(CommandBehavior.SingleRow);
itemID = myReader.GetString(0);
packSize = myReader.GetString(1);
...I get an exception, "No data ...
0
votes
2answers
64 views
Adding reference to my project but cant use it
I'm Developing a Windows CE device application in C#.
When I add reference System.Deployment to my project it should let me add Namespace: System.Drawing.Printing.
When I expand References I can see ...
0
votes
1answer
46 views
Why is my SQLCeCommand ExecuteReader failing?
With the following code I get a less-than-helpful err msg (all I can see of the err msg in the truncated title bar of the exception dialog is, "System.Data.SQLServer...")
string query = "SELECT * ...
0
votes
2answers
97 views
Where should I put the cab file needed to show Compact Framework error messages?
I got this err msg:
Exception: An error message is available for this exception but cannot be displayed because these messages are optional and are not currently insalled on this devcice.
Please ...
0
votes
1answer
61 views
Example of directshow transform filter for wince
I wrote a DirectShow filter for win7 and I have problems to port it to wince6.
Are there any examples for transform filter to wince? I didn't find any.
0
votes
0answers
42 views
.NET Compact audio recording complete
I'm using the .NET Compact Framework for a device that has WinCE5.0, and we have an occasional error with audio recording. We are attempting to free the buffers before they've been passed to the ...
0
votes
1answer
61 views
Why is my file not being written to?
I'm creating a "debug/log" textfile to try to see which "background threads" are running when the app I'm working on hangs.
First, as they're activated, I'm storing them in a StringBuilder:
public ...
0
votes
1answer
52 views
Catching exceptions on fwrite and fread on a file in USB and USB removed while process is progressing
i am writing to a file in USB and while in progress i removed the USB. In the code i am using fwrite to write to the file. i put a try{} catch(...){} block to handle the exception. Exception wasn't ...
0
votes
1answer
34 views
Wince Device Driver
I am trying to connect my POS Terminal(WinCE Secure Multi-Application Operating System,200 MHz ARM 920T 32 bit CPU) to my windows 7 PC. The issue is i am getting a device driver software issue and the ...
0
votes
1answer
114 views
Downloading a file over HTTP or FTP on Windows Mobile 5.0 and Windows CE 6.0
What kind of library or namespace provides an ability to download a file over HTTP or FTP on Windows Mobile (WM) 5.0 and Windows CE (Win CE) 6.0?
I am planning to develop an auto-updater within WM ...
1
vote
1answer
57 views
WinCE Remove App still calls the EXE on startup
I am having some issue uninstalling my application from CE devices.
I have a SHCreateShortcut on my application initialization
SHCreateShortcut(@"\Windows\StartUp\Daemon.lnk", "\"" + "Program ...
0
votes
0answers
23 views
Disable timesync on MC9596
after weeks of testing I finally got on root, why I am not able to set time correctly on our win ce devices (which are already used in operational environment, in time critical process).
Time is ...
2
votes
3answers
217 views
What is the simplest way to write the contents of a StringBuilder to a text file on in .NET 1.1?
I have to use StringBuilder instead of a List of string because of being stuck with .NET 1.1 for this project. It's really cramping my style, and making me feel like I'm wearing raggedy old leopard ...
0
votes
1answer
123 views
Why would this progress bar code cause the progress bar to “hang”?
In the legacy code I'm working on, there are several file retrieval steps - first this set of data, then that set of data, which update a progress bar with a label displaying which portion of the ...
0
votes
0answers
54 views
Find capture device in wince
I wrote an application which reads a stream from camera on win7. I tried to port it to wince6 but, for now, I have problem with the function FindCaptureDevice:
HRESULT FindCaptureDevice()
{
...
0
votes
2answers
100 views
Unable to set time on Win CE device
I created a software, where time is very important. Because of this every time some data is transferred I set also the time on the win ce device. I transfer trough socket DateTime.Now.Ticks and set ...
0
votes
1answer
159 views
Why is the button's event handler not firing?
I have a button with an event handler attached to it; 2-clicking it in the designer takes me to the code. Nowhere is the handler being unhooked/detached.
Some code I expected to run apparently isn't, ...
0
votes
0answers
29 views
Priority Semaphore with Permit Size
I have a need for a synchronization object that controls access to a shared resource of a given size, with requesting threads having varying resource requirements and priorities.
The interface should ...
0
votes
1answer
96 views
How to get programmatic access to controls of Windows CE app running in Emulator using Coded UI or MSAA?
I am trying to automate the application developed in Windows CE. I have created a simple Form consisting of Button and TextBox.
I run the application with the Pocket PC 2003 Emulator and once i record ...
0
votes
1answer
64 views
How can I determine what version SQL Server Compact a table is?
I have some .SDF tables that are created in a Windows CE app (Access table data is passed from a server app, and this is converted into SQL Server Compact records/tables).
I want to look inside them ...
1
vote
1answer
41 views
Use directshow filter in other windows OS
I compiled DirectShow filter in Windows7.
Can I use this DLL filter in Wince or I need to compile it in Wince and then I'll be able to use it?
Thank you
0
votes
1answer
36 views
Why am I seeing no conversations between my desktop and my handheld apps with Wireshark?
I've got a Windows app that runs on my desktop and connects to a Windows CE app on a handheld device. The handheld fetches data using the Windows app as its conduit (it downloads tables and then ...
1
vote
1answer
79 views
Can Windows CE (.NET CF 1.0) apps access web services?
We are planning on replacing a legacy "server" app (a Windows form app with, although it does not really need it, a GUI representation (showing status messages)) with a simplified service of some ...
0
votes
0answers
74 views
Interfacing Star Micronics SP512 USB printer with Windows CE based system
I am working on a project, where I have to interface Star Micronics SP512 USB printer with an existing Windows CE 5 based system. The Windows CE 5 is ported on an Advantech board.
I am working on ...
2
votes
0answers
273 views
Windows CE 6.0 time setting in registry
So I have a Motorola MC3100 Mobile Barcode scanning device with Windows CE 6.0.
Now I want to get the device to sync its date/time on boot up with our domain controller using some registry files that ...
1
vote
1answer
55 views
Where is the actual event handling code?
I've gone all google-eyed and mush-brained trying to figure out wha this code is actually supposed to accomplish.
In some cases the following is called with a bool arg of true (as shown here), other ...
0
votes
2answers
107 views
WinCE 6.0 Reading ini files
This might be a philosophical qustion, but I am reviewing code by a previous engineer and was wondering when the best time was to read the ini file. The current application re-reads the ini file each ...
1
vote
0answers
75 views
Memory Configuration in Windows CE(OS design )
I am new in windows ce. I am working on "friendly-arm mini2440" board. I have programmed the board and I feel that windows can not use all of my SDRAM and I feel Same problem for NAND flash. I looked ...
0
votes
1answer
66 views
What is Windows CE 5.0 Build 1400?
Im development an vb.net application to a Windows Ce 5.0 build 1400 device, but it doesnt work in this device, it only works on Windows Ce 5.0.
What is the "Build 1400"? How can i remove it?
Thanks,
...
0
votes
1answer
159 views
enable javascript on webbrowser control win ec 7
this is my first post in here.
I searched all over the web for a solution to this problem, but i have not found nothing.
I only read that Webbrowser haven't much support for javascript in win ec7.
...
0
votes
1answer
107 views
Determine model and manufacturer of Windows Mobile/CE device
We're running our generic mobile application for Windows Mobile / CE on a couple of devices (Motorola, Honeywell, ...) and would like to automatically detect on which device we're running. Currently, ...
2
votes
1answer
196 views
Platform Builder for WinCE 7.0
I'm using Windows XP 32-bit OS. I installed Visual Studio 2008 initially. Then, I installed WinCE 7.0 Evaluation version. Now, when I check for Platform Builder in Visual Studio, there is no such ...
0
votes
1answer
71 views
Why would a replacement .DLL not be found?
I made a change to an ancillary DLL that my project uses, built it of course, renamed the legacy DLL to *.dll_old, and copy and pasted in the new version of the DLL to that same folder.
However, when ...
-1
votes
1answer
199 views
How can I install SQL Server on Windows CE 5.0 (Build 1400) [closed]
I'm making a vb.net app connected to a Microsoft SQL Server Compact 3.5 database.
I installed SQL Server Compact on Windows CE 5.0 and it worked.
But on Windows CE 5.0 (Build 1400) my application ...
0
votes
0answers
43 views
Windows CE 6 passwords disappear on reboot or crash
Sometimes, after a reboot or a system crash we are no longer able to remotely log into our WinCE 6 system . From what I can tell the entries for the users / passwords are still there in the registry ...
0
votes
0answers
107 views
Sqlite on Windows CE 5.0 Emulator
I am developing a device application on windows ce using vs2005 and sqlite. I need to deploy this application on windows ce 5.0 emulator. The issue is when I am building/Deploying application on ...
5
votes
3answers
219 views
How to change output file folder based on device
First I will start with what I am trying to accomplish, then I will provide contextual details:
When I select Start Debugging, I want the output directory to change depending on which device is ...
1
vote
0answers
105 views
Why would a fetch operation crash when the amount of data is divisible by 1023 or 1024?
(or perhaps, when divisible by 1023 (see Update 3 below))
I'm chasing a bug that arises when the size of the file containing the data being fetched is divisible by 1024. In that case, the fetch seems ...
-1
votes
1answer
106 views
WinCE Image for MIPS [closed]
Does anyone have image of Win CE (5.0 or 6.0) for MIPS processor?
I'm currently use Microsoft Device Emulator v 3.0
I have image for ARM processor, but my target device has MIPS.
Therefore it is ...
0
votes
0answers
90 views
Error in EPROM Sequential read
I'm working with EEPROM (through I2C) driver.
I can write and read a single byte from EEPROM.
However, if i try Sequential Read (Multibyte Read),
I face problem in reading:
I can read values from ...
1
vote
1answer
35 views
How to update the .NET CF into My WinCE device?
I'm developping an application for Motorola MC3000 that use WinCE 5.0 .
It seems that the machine is using the .NET CF 2.0, I just want to update it to .NET CF 3.5 but I don't know how to do it on ...
0
votes
0answers
62 views
Romanization library c++ [closed]
I am looking for a way that allow a computer user to input chinese characters with a standard ASCII keyboard. It´s an own programmed software keyboard.
Example:
The User inputs latin characters and ...
0
votes
1answer
72 views
how to make macbook pro recognize the winCE usb device?
I am developing wince6.0 program in the virtualbox with the OS windows XP. And my host OS is mac OS 10.8.2.
Now the mac OS can't recognize the wince6.0 device, so that the windows xp in virtualBox ...
0
votes
0answers
32 views
My GPS YFloader app fails, and I can't access via USB
I'm kind of a noob on this, so I really appreciate any help you can provide.
My GPS no longer boots past the logo screen, due to the fact I removed the "YFLoader" app call from its startup registry ...
0
votes
1answer
128 views
How to integrate the scan barcode option on my WinCE application?
I'm new to the CE environment, I have to create an application for a mobile computer with a barcode scanne that uses Windows CE 5.0 (motorola mc3000).
Note : I'm using VS 2008 and I'm programming ...
1
vote
1answer
92 views
Can Windows CE buttons sport an image?
Due to real estate/space constraints, I want to put a Printer icon on a button rather than the text "Print"
Yet I see no obvious way to do that (No "Image" property or so on the button).
Is it ...




