Помощь - Поиск - Пользователи - Календарь
Полная версия: Программы для Windows Mobile
Форум «Всё о Паскале» > Современный Паскаль и другие языки > Делфи
kosyak
Доброе всем время суток.

Хотел бы узнать можно ли на Delphi писать программы для Windows mobile для смартфонов?
volvo
Можно, но для этого потребуется Дельфи не ниже 2005. Информация - http://dn.codegear.com/article/33507
kosyak
Цитата(volvo @ 13.11.2008 23:18) *

Можно, но для этого потребуется Дельфи не ниже 2005. Информация - http://dn.codegear.com/article/33507


А нету на русском документации?
заранее спасибо...
volvo
Нет, русскоязычной информации о разработке под WinMobile на Паскале/подобных языках я в сети не встречал. Единственное, что есть - это статья Программирование под Windows Mobile на Free Pascal, где рассматривается также и использование Lazarus-а, но этой статье уже почти полтора года, вполне возможно, что она устарела...
kosyak
Понятно... спасибо, volvo
X
1. Create a new WinForm application in Delphi 2006:
File -> New -> Windows Forms Application – Delphi for .NET

2. Add a button to its form

3. Click on the button and add an event handler, like:
MessageBox.Show('hello');

4. Change the project search path to refer to the CF assemblies:
Project -> Options, go to the Directories/Conditionals page,
replace the Search Path with "C:\Program Files\Borland\BDS\4.0\lib\cf"
(or similar, depending on your installation).

5. Build, and you'll get errors for the 6 lines of code with
properties/methods not supported by CF.
Delete those lines
(SuspendLayout, Name x 2, TabIndex, AutoScaleBaseSize, ResumeLayout).

6. Build again. Error in the project file on the threading model.
Delete the line with "[STAThread]".

7. Build again.

8. You can now copy the resulting executable file to your PocketPC device,
or move it to the shared folder of the emulator. It will work.

9. Add one line of code to the form constructor (Self.MinimizeBox := False;)
to close the application automatically, otherwise deploying a new version
will become complex, as you'll have to terminate the program from the PocketPC
Control Panel.
Это текстовая версия — только основной контент. Для просмотра полной версии этой страницы, пожалуйста, нажмите сюда.