Méthode FolderItemVerb. DoIt
Exécute un verbe sur le FolderItem associé au verbe.
Syntaxe
FolderItemVerb.DoIt()
Paramètres
Cette méthode n’a aucun paramètre.
Valeur de retour
Cette méthode ne retourne pas de valeur.
Exemples
L’exemple suivant utilise doit pour exécuter le premier verbe dans la collection de verbes à laquelle le dossier de programme de l’utilisateur répond. l’utilisation appropriée est indiquée pour JScript, VBScript et Visual Basic.
JScript :
<script language="JScript">
function fnFolderItemVerbDoItJ()
{
var objShell = new ActiveXObject("shell.application");
var objFolder;
var ssfPROGRAMS = 2;
objFolder = objShell.NameSpace(ssfPROGRAMS);
if (objFolder != null)
{
var objVerbs;
objVerbs = objFolder.Self.Verbs();
if (objVerbs != null)
{
objVerbs.Item(0).DoIt();
}
}
}
</script>
VBScript
<script language="VBScript">
function fnFolderItemVerbDoItVB()
dim objShell
set objShell = CreateObject("shell.application")
if (not objShell is nothing) then
dim objFolder
dim ssfPROGRAMS
ssfPROGRAMS = 2
set objFolder = objShell.NameSpace(ssfPROGRAMS)
if (not objFolder is nothing) then
dim objVerbs
set objVerbs = objFolder.Self.Verbs
if (not objVerbs is nothing) then
objVerbs.Item(0).DoIt
end if
set objVerbs = nothing
end if
set objFolder = nothing
end if
set objShell = nothing
end function
</script>
Visual Basic :
Private Sub fnFolderItemVerbDoItVB()
Dim objShell As Shell
Dim objFolder2 As Folder2
Dim ssfPROGRAMS As Long
ssfPROGRAMS = 2
Set objShell = New Shell
Set objFolder2 = objShell.NameSpace(ssfPROGRAMS)
If (Not objFolder2 Is Nothing) Then
Dim objVerbs As FolderItemVerbs
Set objVerbs = objFolder2.Self.Verbs
If (Not objVerbs Is Nothing) Then
objVerbs.Item(0).DoIt
End If
Set objVerbs = Nothing
End If
Set objFolder2 = Nothing
Set objShell = Nothing
End Sub
Spécifications
| Condition requise | Valeur |
|---|---|
| Client minimal pris en charge |
Windows 2000 Professional, Windows XP [ desktop apps uniquement] |
| Serveur minimal pris en charge |
Windows 2000 Server - [Applications de bureau uniquement] |
| En-tête |
|
| MIDL |
|
| DLL |
|