Thanks for the response.
Does that mean that if it is set to in-line with text, there is no way to
retrieve this information?
Hi,
Sorry, it's 'square' pictures that might cause difficulty. In any event, using a macro like the one below will do the job.
Sub ListLinkedImages()
Dim oFld As Field
If ActiveDocument.Fields.Count > 0 Then
For Each oFld In ActiveDocument.Fields
If oFld.Type = wdFieldIncludePicture Then
With Selection
.EndKey Unit:=wdStory
.InsertAfter vbCrLf
.EndKey Unit:=wdStory
.TypeText Text:=oFld.LinkFormat.SourceFullName
End With
End If
Next oFld
End If
End Sub
The list is created at the end of the document.
Note: This may not work with Word 2007, which seems to have implemented a new way of linking to images.
Cheers

Signature
macropod
[MVP - Microsoft Word]
-------------------------
> Thanks for the response.
>
[quoted text clipped - 17 lines]
>> >
>> > Thanks.
Graphic Question - 28 Mar 2008 21:22 GMT
Thanks so much! This worked great. For some reason Alt-F9 doesn't always
work, but this marco does what I need.
I appreciate your help.
> Hi,
>
[quoted text clipped - 42 lines]
> >> >
> >> > Thanks.