PPC 2000 with compact framework 2

  • Thread starter Thread starter Arijull
  • Start date Start date
A

Arijull

Hello.

I want to know if there is any way to make .net CF version 2 work with
a PPC 2000 (with windows mobile 2000).

I mean that I have my app wich i made with VS2005 (CF 2) and I need to
run it in a PPC 2000.

Thanks!

Ariadna.-
 
It's not possible, .NETCF v2.0 requires Windows Mobile 2003 or Windows CE
4.2 or later. You can target older devices with .NETCF v1.0

Peter
 
Thanks Peter for your answer.

Is there any way to convert my app that is working with CF v2.0 to CF
v1.0 or CF v1.1?

Thanks!
 
There is no CF 1.0, only 1.0. The only "conversion" is to recompile, fixing
the errors that prevent it from compiling against the 1.0 BCL.


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Managed Code in an Embedded World
www.OpenNETCF.com
 
Ok. There is something that I didn't follow you.

Dou you mean that I should open my solution with VS 2005 and recompile
my solution with CF 1.0, or that I shoul open my CF v2.0 solution with
VS 2003 and recompile it.

If I should use VS 2005, How do I change the version of the CF?

Thanks again for your time!
 
Dou you mean that I should open my solution with VS 2005 and recompile
my solution with CF 1.0, or that I shoul open my CF v2.0 solution with
VS 2003 and recompile it.

Either one should work.
If I should use VS 2005, How do I change the version of the CF?

Unfortuantely MS didn't make that simple. 1.0->2.0 was a right click and
select a menu item. 2.0->1.0 requires opening the project file with a text
editor like Notepad and changing the target version.

You'll find a line like this:
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>

Change it to:
<TargetFrameworkVersion>v1.0</TargetFrameworkVersion>


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Managed Code in an Embedded World
www.OpenNETCF.com
 
Back
Top