Metodo Shell.ShutdownWindows
Visualizza la finestra di dialogo Arresta finestre . Equivale a fare clic sul menu Start e selezionare Arresta.
Sintassi
iRetVal = Shell.ShutdownWindows()
Shell.ShutdownWindows() As Integer
Parametri
Questo metodo non presenta parametri.
Esempio
L'esempio seguente mostra ShutdownWindows in uso. Viene visualizzato un utilizzo appropriato per JScript, VBScript e Visual Basic.
Jscript:
<script language="JScript">
function fnShellShutdownWindowsJ()
{
var objShell = new ActiveXObject("shell.application");
objShell.ShutdownWindows();
}
</script>
Vbscript:
<script language="VBScript">
function fnShellShutdownWindowsVB()
dim objShell
set objShell = CreateObject("shell.application")
objShell.ShutdownWindows
set objShell = nothing
end function
Visual Basic:
Private Sub fnShellShutdownWindowsVB()
Dim objShell As Shell
Set objShell = New Shell
objShell.ShutdownWindows
Set objShell = Nothing
End Sub
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato |
Windows 2000 Professional, Windows XP [solo app desktop] |
Server minimo supportato |
Windows 2000 Server [solo app desktop] |
Intestazione |
|
IDL |
|
DLL |
|