IShellDispatch.FindComputer 方法

显示 “搜索结果: 计算机 ”对话框。 该对话框显示指定计算机的搜索结果。

语法

IShellDispatch.FindComputer()

IShellDispatch.FindComputer()

参数

此方法没有任何参数。

返回值

JScript

此方法不返回值。

VB

此方法不返回值。

备注

此方法通过 Shell.FindComputer 方法实现和访问。

示例

以下示例演示了在 JScript、VBScript 和 Visual Basic 中使用 FindComputer

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

要求

要求
最低受支持的客户端
Windows 2000 专业版、Windows XP [仅限桌面应用]
最低受支持的服务器
Windows 2000 Server [仅限桌面应用]
标头
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (4.71 或更高版本)