Application location

I created a C++ application for Pocket PC. When I run this application default location is My Device->Program Files. I would like to change it to be able to see my application inside programs list like Pocket Excel or Pocket Word. How do I do that?
Thanks!
Natalie.

[307 byte] By [NatalieF.] at [2007-12-16]
# 1
I would suggest creating a shortcut that points to your application rather than having the application itself on the shortcut menu. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnppcgen/html/ppc_tcuts2.asp
Jeff Abraham
Visual Studio
JeffAbraham at 2007-9-9 > top of Msdn Tech,Smart Device Development,Smart Devices Native C++ Development...
# 2
Jeff,
Thanks! But I actually wanted to do it inside the application.
NatalieF. at 2007-9-9 > top of Msdn Tech,Smart Device Development,Smart Devices Native C++ Development...
# 3
I agree with Jeff that you should use a shortcut, but if you want to actually deploy the EXE to that location (perhaps just for debug purposes or whatever) you should set the deployment path to \Windows\Start Menu\Programs

Note that if you are writing installing the application, versus just deploying from Visual Studio, you should use the macro string %CE11% in your .inf file. You can find more details about this at: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcepb40/html/cxconCreatingInfFile.asp

JonPul at 2007-9-9 > top of Msdn Tech,Smart Device Development,Smart Devices Native C++ Development...