Método IShellDispatch.FileRun
Muestra el cuadro de diálogo Ejecutar al usuario.
Sintaxis
IShellDispatch.FileRun()
IShellDispatch.FileRun()
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 él a través del método Shell.FileRun .
Ejemplos
En los ejemplos siguientes se muestra el uso de FileRun en JScript, VBScript y Visual Basic.
Jscript:
<script language="JScript">
function fnShellFileRunJ()
{
var objShell = new ActiveXObject("shell.application");
objshell.FileRun();
}
</script>
Vbscript:
<script language="VBScript">
function fnShellFileRunVB()
dim objShell
set objShell = CreateObject("shell.application")
objshell.FileRun
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnShellFileRunVB()
Dim objShell As Shell
Set objShell = New Shell
objshell.FileRun
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 |
|
IDL |
|
Archivo DLL |
|