Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 873
Ricardo Acras Avatar asked Nov 29 '22 02:11

Ricardo Acras


1 Answers

Native Delphi only works with x86 compatible processors and Win32/Win64 or MacOS 10 API.

Ken White already pointed to you Delphi Prism, however if you would purchase it, instead of re-marked tool, you'd perhaps purchase the original product, i heard it comes with multiple platforms support instead of one. RemObjects Oxygene is the original product, part of which is re-sold as Prism.

Another option would be using Lazarus (vanilla or CodeTyphon distro). Its LCL library mimics VCL in many respects and FPC compiler mimics Delphi language (and some other Pascal dialects as well).

  • http://www.pilotlogic.com/codetyphon/help/index.html?cross_build_for_windows_mobile.htm
  • http://wiki.freepascal.org/Windows_CE_Interface
  • http://www.lazarus.freepascal.org/index.php?topic=8175.0
like image 170
Arioch 'The Avatar answered Dec 10 '22 23:12

Arioch 'The