IShellDispatch.ControlPanelItem 方法
运行指定的控制面板应用程序。 如果应用程序已打开,它将激活正在运行的实例。
注意
从 Windows Vista 开始,大多数控制面板应用程序都是 Shell 项,不能使用此函数打开。 若要打开这些控制面板应用程序,请将规范名称传递给 control.exe。 例如:
control.exe /name Microsoft.Personalization
语法
IShellDispatch.ControlPanelItem(
bstrDir
)
IShellDispatch.ControlPanelItem( _
ByVal bstrDir As BSTR _
)
参数
-
bstrDir [in]
-
类型: BSTR
控制面板应用程序的文件名。
返回值
JScript
此方法不返回值。
VB
此方法不返回值。
备注
此方法通过 Shell.ControlPanelItem 方法实现和访问。
示例
以下示例使用 ControlPanelItem 运行控制面板的“显示属性”项。 显示 JScript、VBScript 和 Visual Basic 的用法。
Jscript:
<script language="JScript">
function fnShellControlPanelItemJ()
{
var objShell = new ActiveXObject("shell.application");
objshell.Shell_ControlPanelItem("desk.cpl");
}
</script>
VBScript:
<script language="VBScript">
function fnShellControlPanelItemVB()
dim objShell
set objShell = CreateObject("shell.application")
objshell.Shell_ControlPanelItem("desk.cpl")
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnShellControlPanelItemVB()
Dim objShell As Shell
Set objShell = New Shell
objshell.Shell_ControlPanelItem ("desk.cpl")
Set objShell = Nothing
End Sub
要求
要求 | 值 |
---|---|
最低受支持的客户端 |
Windows 2000 专业版、Windows XP [仅限桌面应用] |
最低受支持的服务器 |
Windows 2000 Server [仅限桌面应用] |
标头 |
|
IDL |
|
DLL |
|