Partager via


Méthode Shell.FindComputer

Affiche la boîte de dialogue Résultats de la recherche : Ordinateurs . La boîte de dialogue affiche le résultat de la recherche d’un ordinateur spécifié.

Syntaxe

Shell.FindComputer()

Shell.FindComputer()

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 FindComputer en cours d’utilisation. Le résultat de ce code est le même que d’appuyer sur le bouton Démarrer , de cliquer sur Rechercher, de cliquer sur l’option Imprimantes, ordinateurs ou contacts , puis de cliquer sur Un ordinateur sur le réseau. Une utilisation correcte est indiquée pour JScript, VBScript et Visual Basic.

Jscript:

<script language="JScript">
    function fnShellFindComputerJ()
    {
        var objShell = new ActiveXObject("shell.application");
        
        objShell.FindComputer();
    }
</script>

Vbscript:

<script language="VBScript">
    function fnShellFindComputerVB()
        dim objShell
        dim ssfWINDOWS
        ssfWINDOWS = 36

        set objShell = CreateObject("shell.application")
        objShell.FindComputer

        set objShell = nothing
    end function
 </script>

Visual Basic :

Private Sub fnShellFindComputerVB()
    Dim objShell As Shell

    Set objShell = New Shell
    objShell.FindComputer

    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
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (version 4.71 ou ultérieure)