Méthode Shell.FindFiles
Affiche la boîte de dialogue Rechercher : tous les fichiers . Cela revient à cliquer sur le menu Démarrer , puis à sélectionner Rechercher (ou son équivalent sous systèmes antérieurs à Windows XP).
Syntaxe
Shell.FindFiles()
Shell.FindFiles()
Paramètres
Cette méthode n’a aucun paramètre.
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 FindFiles en cours d’utilisation. Une utilisation correcte est indiquée pour JScript, VBScript et Visual Basic.
Jscript:
<script language="JScript">
function fnShellFindFilesJ()
{
var objShell = new ActiveXObject("shell.application");
objShell.Shell_FindFiles();
}
</script>
Vbscript:
<script language="VBScript">
function fnShellFindFilesVB()
dim objShell
set objShell = CreateObject("shell.application")
objShell.FindFiles
set objShell = nothing
end function
</script>
Visual Basic :
Private Sub fnShellFindFilesVB()
Dim objShell As Shell
Set objShell = New Shell
objShell.FindFiles
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 |
|