Méthode IShellDispatch.ControlPanelItem
Exécute l’application Panneau de configuration spécifiée. Si l’application est déjà ouverte, elle active le instance en cours d’exécution.
Notes
À partir de Windows Vista, la plupart des applications Panneau de configuration sont des éléments shell et ne peuvent pas être ouvertes avec cette fonction. Pour ouvrir ces applications Panneau de configuration, passez le nom canonique à control.exe. Par exemple :
control.exe /name Microsoft.Personalization
Syntaxe
IShellDispatch.ControlPanelItem(
bstrDir
)
IShellDispatch.ControlPanelItem( _
ByVal bstrDir As BSTR _
)
Paramètres
-
bstrDir [in]
-
Type : BSTR
Nom de fichier de l’application Panneau de configuration.
Valeur retournée
JScript
Cette méthode ne retourne pas de valeur.
VB
Cette méthode ne retourne pas de valeur.
Notes
Cette méthode est implémentée et accessible via la méthode Shell.ControlPanelItem .
Exemples
Les exemples suivants utilisent ControlPanelItem pour exécuter l’élément Propriétés d’affichage de l’Panneau de configuration. L’utilisation s’affiche pour JScript, VBScript et 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
Spécifications
Condition requise | Valeur |
---|---|
Client minimal pris en charge |
Windows 2000 Professionnel, Windows XP [applications de bureau uniquement] |
Serveur minimal pris en charge |
Windows 2000 Server [applications de bureau uniquement] |
En-tête |
|
IDL |
|
DLL |
|