Méthode IShellDispatch.Help
Affiche la fenêtre Aide et support Windows. Cette méthode a le même effet que de cliquer sur le menu Démarrer et de sélectionner Aide et support.
Syntaxe
IShellDispatch.Help()
IShellDispatch.Help()
Paramètres
Cette méthode n’a aucun paramètre.
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.Help .
Exemples
Les exemples suivants montrent l’utilisation de l’aide dans JScript, VBScript et Visual Basic.
Jscript:
<script language="JScript">
function fnShellHelpJ()
{
var objShell = new ActiveXObject("shell.application");
objshell.Help();
}
</script>
Vbscript:
<script language="VBScript">
function fnShellHelpVB()
dim objShell
set objShell = CreateObject("shell.application")
objshell.Help
set objShell = nothing
end function
</script>
Visual Basic :
Private Sub fnShellHelpVB()
Dim objShell As Shell
Set objShell = New Shell
objshell.Help
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 |
|