Método IShellDispatch.FindComputer
Exibe a caixa de diálogo Resultados da Pesquisa: Computadores . A caixa de diálogo mostra o resultado da pesquisa de um computador especificado.
Sintaxe
IShellDispatch.FindComputer()
IShellDispatch.FindComputer()
Parâmetros
Esse método não tem parâmetros.
Valor retornado
JScript
Esse método não retorna um valor.
VB
Esse método não retorna um valor.
Comentários
Esse método é implementado e acessado por meio do método Shell.FindComputer .
Exemplos
Os exemplos a seguir mostram o uso de FindComputer em JScript, VBScript e 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 | Valor |
---|---|
Cliente mínimo com suporte |
Windows 2000 Professional, Windows XP [somente aplicativos da área de trabalho] |
Servidor mínimo com suporte |
Windows 2000 Server [somente aplicativos da área de trabalho] |
Cabeçalho |
|
IDL |
|
DLL |
|