Méthode Shell.Explore
Ouvre un dossier spécifié dans une fenêtre windows Explorer.
Syntaxe
Shell.Explore(
vDir
)
Shell.Explore( _
ByVal vDir As Variant _
)
Paramètres
-
vDir [in]
-
Type : Variant
Dossier à afficher. Il peut s’agir d’une chaîne qui spécifie le chemin d’accès du dossier ou l’une des valeurs ShellSpecialFolderConstants . Notez que les noms de constantes trouvés dans ShellSpecialFolderConstants sont disponibles en Visual Basic, mais pas en VBScript ou JScript. Dans ce cas, les valeurs numériques doivent être utilisées à leur place.
Valeur retournée
JScript
Cette méthode ne retourne pas de valeur.
VB
Cette méthode ne retourne pas de valeur.
Exemples
L’exemple suivant montre Explorer en cours d’utilisation. Une utilisation correcte est indiquée pour JScript, VBScript et Visual Basic.
Jscript:
<script language="JScript">
function fnShellExploreJ()
{
var objShell = new ActiveXObject("shell.application");
objShell.Explore("C:\\");
}
</script>]]>
Vbscript:
<script language="VBScript">
function fnShellExploreVB()
dim objShell
dim ssfWINDOWS
ssfWINDOWS = 36
set objShell = CreateObject("shell.application")
objShell.Explore(ssfWINDOWS)
set objShell = nothing
end function
</script>
Visual Basic :
Private Sub fnShellExploreVB()
Dim objShell As Shell
Set objShell = New Shell
objShell.Explore (ssfPERSONAL)
Set objShell = Nothing
End Sub
Spécifications
Condition requise | Valeur |
---|---|
Client minimal pris en charge |
Windows 2000 Professionnel, Windows XP [applications de bureau uniquement] |
Serveur minimal pris en charge |
Windows 2000 Server [applications de bureau uniquement] |
En-tête |
|
IDL |
|
DLL |
|