setup error

  • Thread starter Thread starter ramonours
  • Start date Start date
R

ramonours

Hello,
I am just starting to program win mobile 2003 se with vs2003.
when I deploy my test program to my 2003se pocketpc, I get a setup warning:
'program you have installed may not display properly because it was designed
for a previous version of windows mobile software'

What am I missing?
How do I get rid of this?

thanks in advance,
bb.
 
This error is displayed on all cab files unless they are specifically marked
as supported on second edition. Unfortnatly the current tools don't do this
for you. There is a white paper explaining how you can mark the exe as
second edition aware. The tool described (res2exe) should be able to add the
required resource to your exe:-
http://msdn.microsoft.com/library/d...ing_orientation_and_resolution_aware_apps.asp

Peter

--
Peter Foot
Windows Embedded MVP
www.inthehand.com | www.opennetcf.org

Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups
 
Another way to do this is to manually edit the file:

obj/release/yourprojectname_PPC.inf

and add the following into the [CEDevice] section

BuildMax=0xE0000000
 
Thank you both.

bb

--
Get The CrashCart!!
http://www.rncrashcart.com
Glyn Meek said:
Another way to do this is to manually edit the file:

obj/release/yourprojectname_PPC.inf

and add the following into the [CEDevice] section

BuildMax=0xE0000000

ramonours said:
Hello,
I am just starting to program win mobile 2003 se with vs2003.
when I deploy my test program to my 2003se pocketpc, I get a setup
warning:
'program you have installed may not display properly because it was
designed
for a previous version of windows mobile software'

What am I missing?
How do I get rid of this?

thanks in advance,
bb.
 
Back
Top