Método Shell.Help
Muestra la Ayuda de Windows y el Centro de soporte técnico. Este método tiene el mismo efecto que hacer clic en el menú Inicio y seleccionar Ayuda y soporte técnico.
Sintaxis
Shell.Help()
Shell.Help()
Parámetros
Este método no tiene parámetros.
Valor devuelto
JScript
Este método no devuelve ningún valor.
VB
Este método no devuelve ningún valor.
Ejemplos
En el ejemplo siguiente se muestra ayuda en uso. Se muestra un uso adecuado para JScript, VBScript y 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
Requisitos
Requisito | Value |
---|---|
Cliente mínimo compatible |
Windows 2000 Professional, Windows XP [solo aplicaciones de escritorio] |
Servidor mínimo compatible |
Windows 2000 Server [solo aplicaciones de escritorio] |
Encabezado |
|
IDL |
|
Archivo DLL |
|