Partager via


Méthode IShellDispatch.FileRun

Affiche la boîte de dialogue Exécuter à l’utilisateur.

Syntaxe

IShellDispatch.FileRun()

IShellDispatch.FileRun()

Paramètres

Cette méthode n’a aucun paramètre.

Valeur retournée

JScript

Cette méthode ne retourne pas de valeur.

VB

Cette méthode ne retourne pas de valeur.

Notes

Cette méthode est implémentée et accessible via la méthode Shell.FileRun .

Exemples

Les exemples suivants illustrent l’utilisation de FileRun dans JScript, VBScript et 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

Spécifications

Condition requise Valeur
Client minimal pris en charge
Windows 2000 Professionnel, Windows XP [applications de bureau uniquement]
Serveur minimal pris en charge
Windows 2000 Server [applications de bureau uniquement]
En-tête
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (version 4.71 ou ultérieure)