IPB
ЛогинПароль:

> ВНИМАНИЕ!

Прежде чем задать вопрос, смотрите FAQ.
Рекомендуем загрузить DRKB.

> Программы для Windows Mobile, Программы для смарфонов
kosyak
сообщение 13.11.2008 23:03
Сообщение #1


Пионер
**

Группа: Пользователи
Сообщений: 100
Пол: Мужской

Репутация: -  0  +


Доброе всем время суток.

Хотел бы узнать можно ли на Delphi писать программы для Windows mobile для смартфонов?
 Оффлайн  Профиль  PM 
 К началу страницы 
+ Ответить 
 
 Ответить  Открыть новую тему 
Ответов
X
сообщение 16.12.2008 14:36
Сообщение #2


Гость






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.
 К началу страницы 
+ Ответить 

Сообщений в этой теме


 Ответить  Открыть новую тему 
1 чел. читают эту тему (гостей: 1, скрытых пользователей: 0)
Пользователей: 0

 



- Текстовая версия 21.06.2025 12:22
Хостинг предоставлен компанией "Веб Сервис Центр" при поддержке компании "ДокЛаб"