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 [僅限桌面應用程式] |
標頭 |
|
Idl |
|
DLL |
|