Método Shell.FileRun
Muestra el cuadro de diálogo Ejecutar al usuario. Este método tiene el mismo efecto que hacer clic en el menú Inicio y seleccionar Ejecutar.
Sintaxis
Shell.FileRun()
Shell.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.
Ejemplos
En el ejemplo siguiente se muestra FileRun en uso. Se muestra un uso adecuado para 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 |
|