PPC project <-> SP project

B

Balint Toth

Hi all,

How can I add Smartphone support to a PPC, and PPC support to a Smartphone
project (VS .NET 2003)? (I would like to deploy my Smartphone .NET CF apps
to PPC and PPC apps to SP.)

Best regards,
Bálint Tóth
 
P

Peter Foot [MVP]

A project targeted at Smartphone should run on Pocket PC, however the
reverse is not necessarily true because the Smartphone contains a subset of
the forms controls (and limitations such as the number and position of menu
items). There are two approaches you can take:-

1. Create a single class library (dll) project with your application logic.
Create two front end applications which both use the same dll and customise
each for the specific UI of the target device.

2. Create a Smartphone project - you will be able to run this on a Pocket PC
manually but not by debugging through Visual Studio .NET and you won't be
getting the best out of the Pocket PC.

3. It is possible to build a single project which can display a different UI
depending on device type - either by having multiple forms within the
project, or by laying out the forms at runtime (foregoing the designer
tools) - start from a Pocket PC or Windows CE project and you will have
access to all the controls - you will need to be aware of which are
unsupported on smartphone (ListBox, Toolbar, Button, DataGrid etc).

Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top