Shell.ControlPanelItem 方法

运行指定的 控制面板 (*.cpl) 应用程序。 如果应用程序已打开,它将激活正在运行的实例。

注意

从 Windows Vista 开始,大多数控制面板应用程序都是 Shell 项,不能使用此函数打开。 若要打开这些控制面板应用程序,请将规范名称传递给 control.exe。 例如:

control.exe /name Microsoft.Personalization

 

语法

Shell.ControlPanelItem(
  bstrDir
)

Shell.ControlPanelItem( _
  ByVal bstrDir As BSTR _
)

parameters

bstrDir [in]

类型: BSTR

控制面板应用程序的文件名。 所有控制面板应用程序都具有 .cpl 扩展。

返回值

JScript

此方法不返回值。

VB

此方法不返回值。

示例

以下示例使用 ControlPanelItem 运行控制面板的“显示属性”项。 显示 JScript、VBScript 和 Visual Basic 的正确用法。

Jscript:

<script language="JScript">
    function fnShellControlPanelItemJ()
    {
        var objShell = new ActiveXObject("shell.application");
        
        objShell.ControlPanelItem("desk.cpl");
    }
</script>

VBScript:

<script language="VBScript">
    function fnShellControlPanelItemVB()
        dim objShell
        
        set objShell = CreateObject("shell.application")
        objShell.ControlPanelItem("desk.cpl")
       
        set objShell = nothing
    end function
 </script>

Visual Basic:

Private Sub fnShellControlPanelItemVB()
    Dim objShell As Shell
    
    Set objShell = New Shell
    objShell.ControlPanelItem ("desk.cpl")
    
    Set objShell = Nothing
End Sub

要求

要求
最低受支持的客户端
Windows 2000 专业版、Windows XP [仅限桌面应用]
最低受支持的服务器
Windows 2000 Server [仅限桌面应用]
标头
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (版本 4.71 或更高版本)