Shell.Help method
Displays the Windows Help and Support Center. This method has the same effect as clicking the Start menu and selecting Help and Support.
Shell.Help()
Shell.Help()
This method has no parameters.
This method does not return a value.
This method does not return a value.
The following example shows Help in use. Proper usage is shown for JScript, VBScript, and 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
Requirement | Value |
---|---|
Minimum supported client |
Windows 2000 Professional, Windows XP [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
|
IDL |
|
DLL |
|