PPC 2000 with compact framework 2
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.-
Date:Mon, 13 Aug 2007 06:28:24 -0700
Author:
|
Re: PPC 2000 with compact framework 2
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
--
Peter Foot
Microsoft Device Application Development MVP
www.peterfoot.net | www.inthehand.com
In The Hand Ltd - .NET Solutions for Mobility
"Arijull" wrote in message
news:1187011704.090232.272940@g4g2000hsf.googlegroups.com...
> 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.-
>
Date:Mon, 13 Aug 2007 15:08:04 +0100
Author:
|
Re: PPC 2000 with compact framework 2
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!
Date:Mon, 13 Aug 2007 07:39:24 -0700
Author:
|
Re: PPC 2000 with compact framework 2
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
"Arijull" wrote in message
news:1187015964.570271.175680@19g2000hsx.googlegroups.com...
> 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!
>
>
Date:Mon, 13 Aug 2007 09:46:49 -0500
Author:
|
Re: PPC 2000 with compact framework 2
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!
Date:Mon, 13 Aug 2007 07:57:59 -0700
Author:
|
Re: PPC 2000 with compact framework 2
> 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
Date:Mon, 13 Aug 2007 10:03:28 -0500
Author:
|