Oharra
Baimena behar duzu orria atzitzeko. Direktorioetan saioa has dezakezu edo haiek alda ditzakezu.
Baimena behar duzu orria atzitzeko. Direktorioak alda ditzakezu.
Restaura todas las ventanas de escritorio al mismo estado que estaban antes del último comando MinimizarTodo . Este método tiene el mismo efecto que hacer clic con el botón derecho en la barra de tareas y seleccionar Deshacer minimizar todas las ventanas en sistemas anteriores o un segundo clic en el icono Mostrar escritorio en el área Inicio rápido de la barra de tareas en Windows 2000 o Windows XP.
Sintaxis
iRetVal = Shell.UndoMinimizeALL()
Shell.UndoMinimizeALL() As Integer
Parámetros
Este método no tiene parámetros.
Ejemplos
En el ejemplo siguiente se muestra UndoMinimizeALL en uso. Se muestra un uso adecuado para JScript, VBScript y Visual Basic.
Jscript:
<script language="JScript">
function fnShellUndoMinimizeALLJ()
{
var objShell = new ActiveXObject("shell.application");
objShell.UndoMinimizeALL();
}
</script>
Vbscript:
<script language="VBScript">
function fnShellUndoMinimizeALLVB()
dim objShell
set objShell = CreateObject("shell.application")
objShell.UndoMinimizeALL
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnShellUndoMinimizeAllVB()
Dim objShell As Shell
Set objShell = New Shell
objShell.UndoMinimizeALL
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 |
|