次の方法で共有


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 Professional、Windows XP [デスクトップ アプリのみ]
サポートされている最小のサーバー
Windows 2000 Server [デスクトップ アプリのみ]
ヘッダー
Shldisp.h
IDL
Shldisp.idl
[DLL]
Shell32.dll (バージョン 4.71 以降)