Compartir a través de


Método IShellDispatch.FindComputer

Muestra el cuadro de diálogo Resultados de la búsqueda: Equipos . El cuadro de diálogo muestra el resultado de la búsqueda de un equipo especificado.

Sintaxis

IShellDispatch.FindComputer()

IShellDispatch.FindComputer()

Parámetros

Este método no tiene parámetros.

Valor devuelto

JScript

Este método no devuelve ningún valor.

VB

Este método no devuelve ningún valor.

Comentarios

Este método se implementa y se accede a través del método Shell.FindComputer .

Ejemplos

En los ejemplos siguientes se muestra el uso de FindComputer en JScript, VBScript y 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

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
Shldisp.h
IDL
Shldisp.idl
Archivo DLL
Shell32.dll (versión 4.71 o posterior)