Propriété FolderItem.GetLink
Contient l’objet ShellLinkObject de l’élément, si l’élément est un raccourci.
Cette propriété est en lecture seule.
Syntaxe
objGetLink = FolderItem.GetLink
Valeur de la propriété
Variable de type IDispatch qui reçoit l’objet ShellLinkObject .
Exemples
L’exemple suivant utilise GetLink pour récupérer l’objet ShellLinkObject pour un raccourci vers Internet Explorer. Une utilisation correcte est indiquée pour JScript, VBScript et Visual Basic.
Jscript:
<script language="JScript">
function fnGetLinkJ()
{
var objShell = new ActiveXObject("shell.application");
var objFolder2;
var ssfPROGRAMS = 2;
objFolder2 = objShell.NameSpace(ssfPROGRAMS);
if (objFolder2 != null)
{
var objFolderItem;
objFolderItem = objFolder2.ParseName("Internet Explorer.lnk");
if (objFolderItem != null)
{
var objLink;
objLink = objFolderItem.GetLink;
if (objLink != null)
{
// Add code here
}
}
}
}
</script>
Vbscript:
<script language="VBScript">
function fnGetLinkVB()
dim objShell
dim bReturn
set objShell = CreateObject("shell.application")
if (not objShell is nothing) then
dim objFolder2
dim ssfPROGRAMS
ssfPROGRAMS = 2
set objFolder2 = objShell.NameSpace(ssfPROGRAMS)
if (not objFolder2 is nothing) then
dim objFolderItem
set objFolderItem = objFolder2.ParseName("Internet Explorer.lnk")
if (not objFolderItem is nothing) then
dim objLink
set objLink = objFolderItem.GetLink
if (not objLink is nothing) then
'Add code here
end if
set objLink = nothing
end if
set objFolderItem = nothing
end if
set objFolder2 = nothing
end if
set objShell = nothing
end function
</script>
Visual Basic :
Private Sub fnGetLinkVB()
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 objFolderItem As FolderItem
Set objFolderItem = objFolder2.ParseName("Internet Explorer.lnk")
If (Not objFolderItem Is Nothing) Then
Dim objLink As ShellLinkObject
Set objLink = objFolderItem.GetLink
If (Not objLink Is Nothing) Then
'Add code here
Else
'Folder object returned nothing
End If
Set objLink = Nothing
Else
'FolderItem object returned nothing.
End If
Set objFolderItem = Nothing
Else
'Folder object returned nothing.
End If
Set objFolder2 = Nothing
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 |
|
IDL |
|
DLL |
|
Voir aussi