Deploy desktop app to PDA

  • Thread starter Thread starter Jay
  • Start date Start date
J

Jay

I have a windows app on my desktop.
It has the following components - wrapper_client.exe and AjaxServices.dll.
I have built them in Visual studio 2005. (Both of them are regular C#
windows apps)
I want to install them on the pocket PC PDA with CE 5.0 and CF 2.0 installed
on it.

What do I need to do to make my app work on the PDA device?
 
Recompile and likely rewrite a lot of it. You can't just move a desktop
library to the device and expect it to run. The CF is a subset of the full
framework. Your best bet is to create a device project, add the source
files from the desktop, build and then start refactoring to get through all
the errors.
 
Back
Top