Peter
Tue Oct 05 08:37:26 CDT 2004
You can launch other processes using the CreateProcess or ShellExecuteEx API
functions through P/Invoke, or use the ready-made Process class in OpenNETCF
SDF (www.opennetcf.org/sdf/)
To launch any of the control panel applets you can call ctlpnl.exe with a
specific command line e.g. for the Time control panel:-
Process.Start("ctlpnl.exe", "cplmain.cpl,16,0")
You can find more control panel identifiers here:-
http://www.pocketpcdn.com/articles/controlpanel.html
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
"Justin Beckwith" <pittboner@yahoo.com> wrote in message
news:4a00bbe8.0410050518.4ce4d1ca@posting.google.com...
> On the main form of my application, I provide the user with the
> current datetime, similar to the pocket pc Today screen. I would like
> the user to be able to click that date, and bring up the built in CE
> Clock settings. Is there any way to instantiate this form from the
> compact framework? For that matter, how would you get access to
> other programs on the device programatically?