Metodo IShellDispatch.Windows
Crea e restituisce un oggetto ShellWindows . Questo oggetto rappresenta una raccolta di tutte le finestre aperte che appartengono a Shell.
Sintassi
retVal = IShellDispatch.Windows()
IShellDispatch.Windows() As IDispatch
Parametri
Questo metodo non presenta parametri.
Valore restituito
JScript
Tipo: IDispatch**
Riferimento all'oggetto ShellWindows .
VB
Tipo: IDispatch**
Riferimento all'oggetto ShellWindows .
Commenti
Questo metodo viene implementato e accessibile tramite il metodo Shell.Windows .
Esempio
Gli esempi seguenti usano Windows per recuperare l'oggetto ShellWindows e visualizzare un conteggio del numero di elementi contenuti. L'utilizzo viene visualizzato per JScript, VBScript e Visual Basic.
Jscript:
<script language="JScript">
function fnShellWindowsJ()
{
var objShell = new ActiveXObject("shell.application");
var objShellWindows;
objShellWindows = objshell.Windows();
if (objShellWindows != null)
{
alert(objShellWindows.Count);
}
}
</script>
Vbscript:
<script language="VBScript">
function fnShellWindowsVB()
dim objShell
dim objShellWindows
set objShell = CreateObject("shell.application")
set objShellWindows = objshell.Windows
if (not objShellWindows is nothing) then
alert(objShellWindows.Count)
end if
set objShellWindows = nothing
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnShellWindowsVB()
Dim objShell As Shell
Dim objShellWindows As ShellWindows
Set objShell = New Shell
Set objShellWindows = objshell.Windows
If (Not objShellWindows Is Nothing) Then
Debug.Print objShellWindows.Count
End If
Set objShellWindows = Nothing
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 |
|