Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create applications for Windows CE

Tags:

windows-ce

I'm new to the CE environment and I was wanting to create applications for a computer(Intel) running on CE(5 and up). What exactly do I need to to get started and where do I go? I have never used CE before but I do have experience writing code in C, C++, C#, and Java.

Thanks,

like image 442
Radar5000 Avatar asked Aug 11 '10 22:08

Radar5000


People also ask

Does Microsoft support Windows CE?

While Windows CE 2013 will reach end of extended support in late 2023, Microsoft will allow license sales to continue for Windows Embedded Compact 2013 until 2028. And of course, Windows CE devices can continue to be used indefinitely.

What replaced Windows CE?

Windows CE has now been superseded by Windows IOT which has limited platform compatibility; the other two main contenders are Linux and Android. Android better serves multi-purpose devices, leaving Linux as the main choice for a single-purpose embedded device.

What is Windows CE used for?

Windows CE, also known as Windows Embedded Compact or Windows Embedded CE is an operating system developed for Windows Embedded devices. The Windows CE operating system has powered industrial, medical, and a variety of other devices for more than 20 years.


2 Answers

If you are interested in writing application using C#, do a little search for Compact Framework (CF). It is the stripped down version available in Windows CE.

Keep in mind that Windows CE is a highly customizable OS and you have no guarantee that it will have the component to support your application (that includes C#) - Windows Mobile (+PocketPC, +SmartPhone2003) is a different story.

When you develop for Windows CE you need to use Visual Studio 2005/8 Professional to have the Smart Device support. When you develop C# applications using VS2008 you target CF3.5 and when you use 2005 you target CF 2.0

like image 152
Shaihi Avatar answered Sep 30 '22 01:09

Shaihi


Look in wikipedia, link is http://en.wikipedia.org/wiki/Windows_CE look under Development Tools, I recommend Visual Studio 2008 and C#, here is the link to the SDK: Windows Mobile 6.5 Developer Tool Kit

As of Visual Studio 2010 Windows CE development is not supported any more, here are the details: https://msdn.microsoft.com/en-us/library/sa69he4t%28v=vs.100%29.aspx

like image 34
Antonio Bakula Avatar answered Sep 30 '22 03:09

Antonio Bakula