积极答复者
请问如何使用C++代码打开"开始"->"设置"界面?

问题
-
我想实现一个功能,当点击某个按钮时,程序打开"开始"->"设置"的界面.
我原来的想法是使用ShellExecuteEx函数调用\Windows\ctlpnl.exe来显示,但是不起作用,请问还有什么更好的方法吗?
我使用的开发语言是C++,非MFC
谢谢大家
答案
-
用CreateProcess来打开ctlpnl.exe程序,
http://social.msdn.microsoft.com/Forums/en-US/windowsmobiledev/thread/c9e65358-8efb-4e29-871e-236427a71744/
Please remember to mark the replies as answers if they help and unmark them if they provide no help- 已标记为答案 Guang-Ming Bian - MSFTModerator 2009年10月1日 9:18
全部回复
-
用CreateProcess来打开ctlpnl.exe程序,
http://social.msdn.microsoft.com/Forums/en-US/windowsmobiledev/thread/c9e65358-8efb-4e29-871e-236427a71744/
Please remember to mark the replies as answers if they help and unmark them if they provide no help- 已标记为答案 Guang-Ming Bian - MSFTModerator 2009年10月1日 9:18
-
用CreateProcess来打开ctlpnl.exe程序,
http://social.msdn.microsoft.com/Forums/en-US/windowsmobiledev/thread/c9e65358-8efb-4e29-871e-236427a71744/
Please remember to mark the replies as answers if they help and unmark them if they provide no help
感谢版主,你说的这个我知道,但是我想要打开设置界面,而不是具体的某个设置项,即用户点击"开始"->"设置"的那个界面